ci: add app signing
This commit is contained in:
@@ -11,6 +11,20 @@ jobs:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Decode keystore
|
||||
run: echo "$KEYSTORE_BASE64" | base64 --decode > android/app/keystore.jks
|
||||
env:
|
||||
KEYSTORE_BASE64: ${{ secrets.FRAJUL_KEYSTORE_BASE64 }}
|
||||
|
||||
- name: Create keystore.properties
|
||||
run: |
|
||||
cat <<EOF > android/keystore.properties
|
||||
storeFile=keystore.jks
|
||||
storePassword=${{ secrets.FRAJUL_KEYSTORE_PASSWORD }}
|
||||
keyAlias=${{ secrets.FRAJUL_KEYSTORE_ALIAS }}
|
||||
keyPassword=${{ secrets.FRAJUL_KEYSTORE_KEY_PASSWORD }}
|
||||
EOF
|
||||
|
||||
- name: Build apk
|
||||
run: devenv shell build-android
|
||||
|
||||
|
||||
@@ -11,6 +11,22 @@ jobs:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Decode keystore
|
||||
run: echo "$KEYSTORE_BASE64" | base64 --decode > android/app/keystore.jks
|
||||
env:
|
||||
KEYSTORE_BASE64: ${{ secrets.FRAJUL_KEYSTORE_BASE64 }}
|
||||
|
||||
- name: Create keystore.properties
|
||||
run: |
|
||||
cat <<EOF > android/keystore.properties
|
||||
storeFile=keystore.jks
|
||||
storePassword=${{ secrets.FRAJUL_KEYSTORE_PASSWORD }}
|
||||
keyAlias=${{ secrets.FRAJUL_KEYSTORE_ALIAS }}
|
||||
keyPassword=${{ secrets.FRAJUL_KEYSTORE_KEY_PASSWORD }}
|
||||
EOF
|
||||
|
||||
- name: Build apk
|
||||
run: devenv shell build-android
|
||||
- name: Build apk
|
||||
run: devenv shell build-android
|
||||
|
||||
|
||||
Reference in New Issue
Block a user