Bump serve-static from 1.15.0 to 1.16.2 #16
Workflow file for this run
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 and Release Android | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build and Release APK | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '21' # Adjust the Node.js version according to your project requirements | |
- name: Install dependencies | |
run: | | |
npm i @capacitor/core | |
npm install -g @capacitor/cli | |
npm install | |
- name: Build web assets | |
run: npm run generate | |
- name: Sync web assets to Android | |
run: npx cap sync android | |
- name: set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Build Android APK with Gradle | |
run: | | |
cd android | |
chmod +x ./gradlew # Ensure Gradle wrapper has executable permission | |
./gradlew assembleRelease | |
- name: Move APK to build directory | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/build | |
mv ./android/app/build/outputs/apk/release/app-release.apk $GITHUB_WORKSPACE/build/ | |
- name: Create Release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "build/app-release.apk" | |
tag: v${{ github.run_number }} | |
token: ${{ secrets.TOKEN }} | |
draft: false | |
prerelease: false |