Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
byungtak-lee committed Sep 23, 2024
1 parent ce571b2 commit 7095448
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,17 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Decode Keystore
id: decode_keystore
uses: timheuer/base64-to-file@v1
with:
fileName: '../nextroom_key'
encodedString: ${{ secrets.SIGNING_KEY }}
# - name: Decode Keystore
# id: decode_keystore
# uses: timheuer/base64-to-file@v1
# with:
# fileName: '../nextroom_key'
# encodedString: ${{ secrets.SIGNING_KEY }}

- name: Decode And Save Keystore Base64 # app.keystore.jks 키 값을 디코드 해서 app/ksystore.jks로 저장한다. (생략 가능)
run: |
echo "${{ secrets.SIGNING_KEY }}" | base64 --decode > app/nextroom_key
- name: Access Build Key
run: |
Expand Down

0 comments on commit 7095448

Please sign in to comment.