Skip to content

Build and Release apk #61

Build and Release apk

Build and Release apk #61

Workflow file for this run

on:
push:
tags:
- "v*"
name: Build and Release apk
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set version
id: version
run: |
VERSION=$(echo ${{ github.ref }} | sed -e "s#refs/tags/##g")
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.8'
- run: flutter doctor -v
- run: flutter pub get
- name: Create the Keystore
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
KEY_PROPERTIES: ${{ secrets.KEY_PROPERTIES }}
run: |
# import keystore from secrets
echo $KEYSTORE_BASE64 | base64 -d > android/app/upload-keystore.jks
echo $KEY_PROPERTIES | base64 -d > android/key.properties
- run: flutter build apk
- run: mv build/app/outputs/flutter-apk/app-release.apk build/app/outputs/flutter-apk/ConningTower-${{ steps.version.outputs.version }}-release.apk
- name: Create Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
artifacts: "build/app/outputs/flutter-apk/*release.apk"
token: ${{ secrets.ACTIONS_TOKEN }}