chore: Change to new domain & docs: Change to new donation link #173
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: Build Apk | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "17" | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm install | |
- name: Build the original project | |
run: npm run build | |
- name: Add android folder | |
run: npx cap add android | |
- name: Capacitor update | |
run: npx cap update | |
- name: Capacitor copy | |
run: npx cap copy | |
- name: Generate icons and splash screen to android folder | |
run: if [ -d "./resources" ]; then npm install @capacitor/assets --save-dev && npx capacitor-assets generate --android; fi | |
shell: bash | |
- name: Build app bundle | |
run: cd android && ./gradlew bundle && ./gradlew assembleDebug | |
- name: Check folder content of android output | |
run: ls ./android/app/build/outputs/bundle/release | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: calcium-apk | |
path: ./android/app/build/outputs/apk/debug/app-debug.apk |