Skip to content

Commit

Permalink
release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon1777 committed Aug 31, 2024
1 parent 37c6163 commit 7ec9081
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build and upload assets

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: checkout code
uses: actions/checkout@v4

- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: stable

- name: set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: install dependencies
run: flutter pub get

- name: generate runtime code
run: dart run build_runner build --delete-conflicting-outputs

- name: build
run: flutter build apk

- name: rename output APK
run: |
mkdir bin
mv build/app/outputs/flutter-apk/app-release.apk bin/karlsen-mobile-${{ github.event.release.tag_name }}.apk
- name: Upload release assets
uses: softprops/action-gh-release@v2
with:
files: bin/*.apk

0 comments on commit 7ec9081

Please sign in to comment.