We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0af7959 commit a3fc570Copy full SHA for a3fc570
1 file changed
.github/workflows/deploy.yml
@@ -85,7 +85,15 @@ jobs:
85
echo -n "$PROVISIONING_PROFILE_WIDGET" | base64 --decode \
86
-o ~/Library/MobileDevice/Provisioning\ Profiles/KeychyApp_Widget_Distribution.mobileprovision
87
88
- # 6. SPM 패키지 해석 (빌드 전 미리 다운로드)
+ # 6. gitignore된 설정 파일 복원
89
+ - name: Restore GoogleService-Info.plist
90
+ env:
91
+ GOOGLE_SERVICE_INFO_PLIST: ${{ secrets.GOOGLE_SERVICE_INFO_PLIST }}
92
+ run: |
93
+ echo -n "$GOOGLE_SERVICE_INFO_PLIST" | base64 --decode \
94
+ -o Keychy/GoogleService-Info.plist
95
+
96
+ # 7. SPM 패키지 해석 (빌드 전 미리 다운로드)
97
- name: Resolve Swift packages
98
run: xcodebuild -resolvePackageDependencies -scheme Keychy -clonedSourcePackagesDirPath SourcePackages
99
0 commit comments