This commit is contained in:
parent
61dfc97457
commit
6c1cdd07c6
1 changed files with 11 additions and 4 deletions
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
|
@ -24,10 +24,17 @@ jobs:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: echo "Estoy en $(pwd)"; find $(pwd)
|
run: echo "Estoy en $(pwd)"; find $(pwd)
|
||||||
|
|
||||||
- name: Make
|
- name: Flutter
|
||||||
env:
|
uses: subosito/flutter-action@v2
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
with:
|
||||||
run: ./release.sh
|
channel: stable
|
||||||
|
flutter-version: 3.38.9
|
||||||
|
run: |
|
||||||
|
flutter build apk --release
|
||||||
|
flutter build linux --release
|
||||||
|
flutter build web --release
|
||||||
|
pushd build/web && zip -r ../../webapp.zip * && popd
|
||||||
|
pushd build/linux/x64/release/bundle && zip -r ../../../../../linux-bin.zip * && popd
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue