apk build action
This commit is contained in:
parent
7174a03cf2
commit
864a43ed14
1 changed files with 18 additions and 0 deletions
18
.gitea/workflows/build.yml
Normal file
18
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: default
|
||||||
|
container:
|
||||||
|
image: ghcr.io/cirruslabs/flutter:stable
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install nodejs
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- run: flutter --version
|
||||||
|
- run: flutter build apk --release
|
Loading…
Reference in a new issue