Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
DawnMagnet committed Mar 3, 2024
1 parent cd121f2 commit 706970e
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/flutter-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ jobs:
with:
name: release-artifacts
path: |
build/app/outputs/flutter-apk/*
build/web/*
build/linux/x64/release/bundle/*
build/app/outputs/apk/*.apk
build/app/outputs/flutter-apk/*.apk
build/web
build/linux
build-and-release-on-macos:
runs-on: macos-latest
Expand Down Expand Up @@ -115,6 +116,11 @@ jobs:
with:
name: release-artifacts

- name: pack into tar.gz or zip
run: |
tar -zcvf web.tar.gz web
tar -zcvf linux.tar.gz linux
- name: Create release
uses: "marvinpinto/action-automatic-releases@latest"
with:
Expand All @@ -125,9 +131,8 @@ jobs:
files: |
*.apk
*.exe
*.Runner.app
web
bundle
Runner.app
*.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 706970e

Please sign in to comment.