Skip to content

Commit

Permalink
Merge branch 'main' into feature/510-to-main
Browse files Browse the repository at this point in the history
  • Loading branch information
Rool committed Dec 19, 2023
2 parents 286195c + e43c5ed commit 2041227
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ jobs:
- name: Archive Holder
if: ${{ !contains(github.ref, 'Verifier') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Holder App
path: CTR.ipa
retention-days: 30

- name: Archive Holder dSYMs
if: ${{ !contains(github.ref, 'Verifier') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Holder App dSYMs
path: CTR.app.dSYM.zip
Expand All @@ -107,15 +107,15 @@ jobs:
- name: Archive Verifier
if: ${{ !contains(github.ref, 'Holder') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Verifier App
path: Verifier.ipa
retention-days: 30

- name: Archive Verifier dSYMs
if: ${{ !contains(github.ref, 'Holder') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Verifier App dSYMs
path: Verifier.app.dSYM.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoketest-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
bundle exec fastlane ios smoketest_ui
- name: Archive test artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-output
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/template_firebase-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ jobs:
${{ inputs.fastlane_command }}
- name: Archive App
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.app_title }}
path: ${{ inputs.app_filename }}.ipa
retention-days: 10

- name: Archive dSYMs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.app_title }} dSYMs
path: ${{ inputs.app_filename }}.app.dSYM.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
bundle exec fastlane ios test_ui
- name: Archive test artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-output
Expand Down

0 comments on commit 2041227

Please sign in to comment.