Skip to content

Commit

Permalink
moved env variabled before run assemble
Browse files Browse the repository at this point in the history
  • Loading branch information
neoBortx authored and Borja committed Jan 18, 2024
1 parent d999789 commit 57c2703
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/android_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ jobs:

- name: Decode Keystore
run: pwd; echo ${{ secrets.ENCODED_KEYSTORE }} | base64 -d > bortxappskeystore.p12
env:
ENCODED_KEYSTORE: ${{ secrets.ENCODED_KEYSTORE }}
KEYSTORE_PATH: ${{ secrets.KEYSTORE_PATH }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}

- name: Extract Library Version
id: version
Expand All @@ -35,6 +30,11 @@ jobs:
echo "::set-output name=version::$VERSION"
- name: Build and Sign AAR
env:
ENCODED_KEYSTORE: ${{ secrets.ENCODED_KEYSTORE }}
KEYSTORE_PATH: ${{ secrets.KEYSTORE_PATH }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
run: ./gradlew assembleRelease

- name: Create Release
Expand Down

0 comments on commit 57c2703

Please sign in to comment.