Skip to content

Commit

Permalink
adding zip to macos
Browse files Browse the repository at this point in the history
  • Loading branch information
krjw-eyev committed Sep 8, 2022
1 parent d394104 commit 93fdb44
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/github-actions-release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ jobs:
flutter-version: '3.3.1'
channel: 'stable'
- run: flutter build windows --release

- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: skyle_ik-windows.zip
directory: build/linux/x64/release/bundle/

- name: Create Github Release
uses: ncipollo/release-action@v1
with:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/github-actions-release-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,18 @@ jobs:
channel: 'stable'
architecture: x64
- run: flutter build macos --release

- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: skyle_ik-macos.zip
directory: build/macos/Build/Products/Release

- name: Create Github Release
uses: ncipollo/release-action@v1
with:
artifacts: 'build/macos/Build/Products/Release/skyle_ik.app'
artifacts: 'build/macos/Build/Products/Release/skyle_ik-macos.zip'
token: ${{ secrets.RELEASES_TOKEN }}
tag: '1.0.0'
commit: main
2 changes: 2 additions & 0 deletions .github/workflows/github-actions-release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ jobs:
flutter-version: '3.3.1'
channel: 'stable'
- run: flutter build windows --release

- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: skyle_ik-windows.zip
directory: build/windows/runner/Release

- name: Create Github Release
uses: ncipollo/release-action@v1
with:
Expand Down

0 comments on commit 93fdb44

Please sign in to comment.