Skip to content

Commit

Permalink
use tar.gz extensions for macos and linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pjb7687 authored Nov 12, 2023
1 parent 7acf2db commit 4544d76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
uses: actions/[email protected]
with:
name: GDL Workbench (macOS)
path: product/target/products/gdlde.product-macosx.cocoa.x86_64.zip
path: product/target/products/gdlde.product-macosx.cocoa.x86_64.tar.gz
- name: Upload Build Artifacts
uses: actions/[email protected]
with:
name: GDL Workbench (Linux)
path: product/target/products/gdlde.product-linux.gtk.x86_64.zip
path: product/target/products/gdlde.product-linux.gtk.x86_64.tar.gz
- name: Upload Release Assets
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: ncipollo/release-action@v1
with:
artifacts: product/target/products/gdlde.product-*.zip
artifacts: product/target/products/gdlde.product-*
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4544d76

Please sign in to comment.