Skip to content

Commit 6ce1525

Browse files
committed
fix/#77: keystore 경로를 모듈 경로로 수정
1 parent 1b37672 commit 6ce1525

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/android-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
echo "release.base.url=${{ secrets.RELEASE_BASE_URL }}" >> local.properties
3838
3939
- name: Decode Keystore
40-
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > keystore.jks
40+
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > app/keystore.jks
4141

4242
- name: Decode google-services.json
4343
run: echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json

.github/workflows/distribute.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
echo "release.base.url=${{ secrets.RELEASE_BASE_URL }}" >> local.properties
5656
5757
- name: Decode Keystore
58-
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > keystore.jks
58+
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > app/keystore.jks
5959

6060
- name: Decode google-services.json
6161
run: echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json

0 commit comments

Comments
 (0)