ScottEnock has triggered an Android Release #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release APK | |
run-name: ${{ github.actor }} has triggered an Android Release | |
on: | |
pull_request: | |
branches-ignore: | |
- "main" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "corretto" | |
java-version: "17" | |
- run: npm ci | |
- run: npm test | |
- run: npm run build --if-present | |
- name: Decode Keystore | |
id: decode_keystore | |
uses: timheuer/base64-to-file@v1 | |
with: | |
fileName: "keystore.jks" | |
encodedString: ${{ secrets.KEYSTORE }} | |
- name: build APK | |
env: | |
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} | |
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} | |
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | |
run: | | |
cd cordova | |
npm i -D cordova | |
npx cordova platform add android@13 | |
npx cordova build android --release -- --keystore=../keystore.jks --storePassword="$SIGNING_STORE_PASSWORD" --alias="$SIGNING_KEY_ALIAS" --password="$SIGNING_KEY_PASSWORD" |