Skip to content

chore: fix minor alignment bugs (#30) #6

chore: fix minor alignment bugs (#30)

chore: fix minor alignment bugs (#30) #6

Workflow file for this run

name: Build
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "17"
cache: "gradle"
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.16.4"
cache: true
- run: flutter pub get
- run: flutter build apk
- name: Release APK
uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
allowUpdates: true
name: "KzShortner ${{ github.ref_name }}"
body: "Check the assets for the APK."
artifacts: "build/app/outputs/apk/release/*.apk"
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}