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 167cc9e commit c44d6e9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,17 @@ jobs:
# fileName: '../nextroom_key'
# encodedString: ${{ secrets.SIGNING_KEY }}

# - name: Decode And Save Keystore Base64
# run: |
# echo $DATA | base64 -d > app/keystore.jks
# env:
# DATA: ${{ secrets.KEYSTORE_BASE64 }}

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

- name: Access Build Key
run: |
Expand Down

0 comments on commit c44d6e9

Please sign in to comment.