Skip to content

Commit 3c61967

Browse files
committed
fix(ci): allow ARM64 Alpine artifact upload to fail gracefully
The upload-artifact JS action cannot run inside Alpine containers on ARM64 runners. Add continue-on-error for aarch64 builds since release.yml has dedicated upload-arm-static and upload-android-static jobs that handle these uploads via gh CLI.
1 parent 69c29cd commit 3c61967

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/build-platforms.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,9 @@ jobs:
336336
337337
- name: Upload release archive
338338
if: ${{ inputs.create-archives }}
339+
# JS actions don't work in Alpine containers on ARM runners;
340+
# release.yml has dedicated upload-arm-static/upload-android-static jobs as fallback
341+
continue-on-error: ${{ contains(matrix.arch, 'aarch64') }}
339342
uses: actions/upload-artifact@v7
340343
with:
341344
name: build-${{ matrix.target }}

0 commit comments

Comments
 (0)