From 709544899d1cc670861af516fdbf1bef38f3f621 Mon Sep 17 00:00:00 2001 From: "byungtak.lee" Date: Mon, 23 Sep 2024 17:18:36 +0900 Subject: [PATCH] test --- .github/workflows/android.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 46c72be9..c3d8c1c3 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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: |