Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 0ea3986

Browse files
authored
Add continue-on-error to upload steps in workflow
1 parent 1d87a59 commit 0ea3986

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-ipa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ jobs:
384384
done
385385
- name: Upload Signed IPAs
386386
if: always()
387+
continue-on-error: true
387388
run: |
388389
for ipa in build/com.prostoreios.prostore-signed-*-ios.ipa; do
389390
if [ -f "$ipa" ]; then
@@ -393,14 +394,13 @@ jobs:
393394
cp "$ipa" "artifact_dir/${SHORT_NAME}/"
394395
fi
395396
done
396-
continue-on-error: true
397397
- name: Upload Artifacts
398398
if: always()
399+
continue-on-error: true
399400
uses: actions/upload-artifact@v4
400401
with:
401402
name: signed-ipas
402403
path: artifact_dir/**
403-
continue-on-error: true
404404
# create-github-release:
405405
# name: Create GitHub Release
406406
# needs: [build-unsigned-ipa, sign-ipas]

0 commit comments

Comments
 (0)