Skip to content

Commit

Permalink
Merge pull request #1886 from ruuvi/dev
Browse files Browse the repository at this point in the history
Fix Firebase call in upload dSYM (#1885)
  • Loading branch information
rinat-enikeev authored Jan 22, 2024
2 parents 167617a + 57bf0e7 commit f711999
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Upload dSYM to Firebase
run: |
find ./Build/Station_Dev.xcarchive -name '*.dSYM.zip' | xargs -I \{\} firebase crashlytics:upload-symbols --app ${{ secrets.GOOGLE_APP_ID }} -g \{\}
find ./Build/Station_Dev.xcarchive -name '*.dSYM.zip' | xargs -I \{\} ./.tools/firebase/firebase crashlytics:upload-symbols --app ${{ secrets.GOOGLE_APP_ID }} -g \{\}
- name: Clean up keychain and provisioning profiles
if: ${{ always() }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Upload dSYM to Firebase
run: |
find ./Build/Station.xcarchive -name '*.dSYM.zip' | xargs -I \{\} firebase crashlytics:upload-symbols --app ${{ secrets.GOOGLE_APP_ID }} -g \{\}
find ./Build/Station.xcarchive -name '*.dSYM.zip' | xargs -I \{\} ./.tools/firebase/firebase crashlytics:upload-symbols --app ${{ secrets.GOOGLE_APP_ID }} -g \{\}
- name: Upload to testflight
run: |
Expand Down

0 comments on commit f711999

Please sign in to comment.