From 93fdb4440d2f757b710e50ccc58873a9a44020a9 Mon Sep 17 00:00:00 2001 From: Konstantin Wachendorff Date: Thu, 8 Sep 2022 17:34:07 +0200 Subject: [PATCH] adding zip to macos --- .github/workflows/github-actions-release-linux.yml | 2 ++ .github/workflows/github-actions-release-macos.yml | 10 +++++++++- .github/workflows/github-actions-release-windows.yml | 2 ++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-release-linux.yml b/.github/workflows/github-actions-release-linux.yml index aefbdf2..e35e34e 100644 --- a/.github/workflows/github-actions-release-linux.yml +++ b/.github/workflows/github-actions-release-linux.yml @@ -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: diff --git a/.github/workflows/github-actions-release-macos.yml b/.github/workflows/github-actions-release-macos.yml index 07eda9d..7f77d71 100644 --- a/.github/workflows/github-actions-release-macos.yml +++ b/.github/workflows/github-actions-release-macos.yml @@ -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 diff --git a/.github/workflows/github-actions-release-windows.yml b/.github/workflows/github-actions-release-windows.yml index 28c2aeb..b3b8935 100644 --- a/.github/workflows/github-actions-release-windows.yml +++ b/.github/workflows/github-actions-release-windows.yml @@ -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: