GHA: Fix strip failing in Linux ARM64 builds
This commit is contained in:
parent
dad5082e7e
commit
af27aca021
|
@ -231,7 +231,11 @@ jobs:
|
|||
env:
|
||||
OUTDIR: ${{ startsWith(matrix.opts.target, 'template') && 'out/templates' || 'out/' }}
|
||||
run: |
|
||||
if [ "${{matrix.opts.arch}}" == "arm64" ]; then
|
||||
${GITHUB_WORKSPACE}/buildroot/bin/aarch64-godot-linux-gnu-strip ./bin/godot.*
|
||||
else
|
||||
strip ./bin/godot.*
|
||||
fi
|
||||
chmod +x ./bin/godot.*
|
||||
mkdir -p ${{env.OUTDIR}}
|
||||
mv bin/* ${{env.OUTDIR}}
|
||||
|
|
Loading…
Reference in New Issue