Skip to content

Commit

Permalink
Decode google plist from secrets on ci builds
Browse files Browse the repository at this point in the history
  • Loading branch information
yalishanda42 committed May 17, 2023
1 parent 32bf200 commit 07886b6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-n-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
- name: Switch to Xcode 14.3
run: |
sudo xcode-select -s /Applications/Xcode_14.3.app
- name: Decode GoogleService-Info.plist
run: |
echo ${{ secrets.GOOGLE_PLIST_CONTENT_B64 }} | base64 --decode > "${GITHUB_WORKSPACE}/BDZDelays/GoogleService-Info.plist"
- name: Build iOS app (debug config)
run: |
Expand All @@ -43,6 +47,10 @@ jobs:
- name: Switch to Xcode 14.3
run: |
sudo xcode-select -s /Applications/Xcode_14.3.app
- name: Decode GoogleService-Info.plist
run: |
echo ${{ secrets.GOOGLE_PLIST_CONTENT_B64 }} | base64 --decode > "${GITHUB_WORKSPACE}/BDZDelays/GoogleService-Info.plist"
- name: Build macOS app (debug config)
run: |
Expand Down

0 comments on commit 07886b6

Please sign in to comment.