Skip to content

Commit

Permalink
Compress tar
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidStirling committed Oct 24, 2024
1 parent 596c9d3 commit 3c22778
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ jobs:
pyinstaller -y ./distribution/macos/CellProfiler.spec
- if: startsWith(matrix.os, 'macos')
name: MacOS tar package
run: tar -cvf CellProfiler+AI.tar CellProfiler+AI.app
run: tar -czvf CellProfiler+AI.tar.gz CellProfiler+AI.app
working-directory: ./dist
- if: startsWith(matrix.os, 'macos')
uses: actions/upload-artifact@v4
name: MacOS tar upload
with:
name: CellProfiler-macOS-4.2.80001-ai.tar
path: ./dist/*.tar
name: CellProfiler-macOS-4.2.80001-ai.tar.gz
path: ./dist/*.tar.gz
- if: startsWith(matrix.os, 'windows')
uses: actions/upload-artifact@v4
name: Windows artifact upload
Expand All @@ -119,7 +119,7 @@ jobs:
draft: true
files: |
./*.exe
./*.tar
./*.tar.gz
name: create-release
on:
Expand Down

0 comments on commit 3c22778

Please sign in to comment.