anyway/.gitea/workflows/build-web.yaml
Remy Moll 9d1215db07
Some checks failed
Test, Build and Release web / Build Web (push) Failing after 57s
Test, Build and Release apk / Build APK (push) Has been cancelled
try again
2024-05-02 18:15:13 +02:00

20 lines
582 B
YAML

on: push
name: Test, Build and Release web
jobs:
build:
name: Build Web
runs-on: k8s
steps:
- uses: https://github.com/actions/checkout@v1
- uses: https://github.com/subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
- run: flutter pub get
# - run: flutter test
- run: flutter build apk --debug --split-per-abi
- name: Push APK to Releases
uses: https://github.com/ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/debug/*.apk"
token: ${{ secrets.TOKEN }}