Skip to content

Commit

Permalink
fix: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ansehoon1999 committed Dec 3, 2023
1 parent bd49e59 commit ffa7342
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
cache: gradle

- name: Generate Keystore file from Github Secrets
run: echo $APP_KETSTORE_BASE64 | base64 -d > release.keystore
run: |
echo "$KEYSTORE" > ./keystore/keystore.b64
base64 -d -i ./keystore/keystore.b64 > ./Users/ansehun/Desktop/uliga/uliga_keystore
env:
KEYSTORE: ${{ secrets.APP_KETSTORE_BASE64 }}

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down

0 comments on commit ffa7342

Please sign in to comment.