Skip to content

Commit

Permalink
fix: 워크플로우 오류 수정 롤백
Browse files Browse the repository at this point in the history
  • Loading branch information
Taewan-P committed Apr 1, 2024
1 parent 8d1e152 commit 7e3482a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/firebase-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
deploy:
runs-on: macos-14
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -23,9 +23,8 @@ jobs:
env:
KEYSTORE_B64: ${{ secrets.APP_KEYSTORE }}
run: |
echo $KEYSTORE_B64 \
| sed 's/[^A-Za-z0-9+/=]//g' \
| base64 -d > keystore.jks
echo $KEYSTORE_B64 > keystore_b64.txt
base64 --decode --ignore-garbage keystore_b64.txt > keystore.jks
working-directory: ./android/app

- name: Build Release APK
Expand Down

0 comments on commit 7e3482a

Please sign in to comment.