Skip to content

Commit

Permalink
feat: Github Actions make Google Service info 생성 명령어 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Do-hyun-Kim committed Dec 27, 2024
1 parent 5bc82b8 commit d0247f0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ jobs:

- name: Clean Derived Data
run: rm -rf ~/Library/Developer/Xcode/DerivedData

- name: make Google Service Info
run: |
echo "${{ secrets.GOOGLE_INFO_PLIST }}" | base64 --decode > ${{ secrets.GOOGLE_SERVICE_INFO_PLIST_PATH }}
- name: Verify GoogleService-Info.plist creation
run: |
ls -l ${{ secrets.GOOGLE_SERVICE_INFO_PLIST_PATH }}
cat ${{ secrets.GOOGLE_INFO_PLIST }}
- name: fastlane upload_prd_testflight
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}
Expand Down

0 comments on commit d0247f0

Please sign in to comment.