Skip to content

Commit

Permalink
add github workflow release
Browse files Browse the repository at this point in the history
  • Loading branch information
lamarios committed Feb 2, 2024
1 parent bad3040 commit f6a3a50
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ on:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
ANDROID_KEY_FILE: /tmp/key.properties

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -34,10 +36,10 @@ jobs:
md5sum /tmp/keystore.jks
- name: Create key.properties
run: |
echo "storeFile=/tmp/keystore.jks" > /tmp/key.properties
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> /tmp/key.properties
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> /tmp/key.properties
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> /tmp/key.properties
echo "storeFile=/tmp/keystore.jks" > ${ANDROID_KEY_FILE}
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> ${ANDROID_KEY_FILE}
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> ${ANDROID_KEY_FILE}
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> ${ANDROID_KEY_FILE}
md5sum /tmp/key.properties
- run: git submodule init
- run: git submodule update
Expand Down

0 comments on commit f6a3a50

Please sign in to comment.