Skip to content

Commit 1d0664b

Browse files
committed
remove zip cmd from workflows
1 parent d7b2d87 commit 1d0664b

2 files changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/build-fedora.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,11 @@ jobs:
3232
# Build with Nuitka
3333
nuitka --standalone --onefile --enable-plugin=no-qt --include-data-dir=assets/fonts=assets/fonts --output-dir=dist src/main.py
3434
35-
# Rename binary and create tar.gz with just the binary
35+
# Rename binary
3636
mv dist/main.bin mcat
37-
tar -czf mcat.tar.gz mcat
3837
3938
- name: Upload build artifacts
4039
uses: actions/upload-artifact@v4
4140
with:
4241
name: mcat-Fedora
43-
path: |
44-
dist/mcat
45-
mcat.tar.gz
42+
path: mcat

.github/workflows/build-macos.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,11 @@ jobs:
3030
# Build with Nuitka
3131
nuitka --standalone --onefile --enable-plugin=no-qt --include-data-dir=assets/fonts=assets/fonts --output-dir=dist src/main.py
3232
33-
# Rename binary and create zip with just the binary
33+
# Rename binary
3434
mv dist/main.bin mcat.bin
35-
zip mcat.zip mcat.bin
3635
3736
- name: Upload build artifacts
3837
uses: actions/upload-artifact@v4
3938
with:
4039
name: mcat-macOS
41-
path: |
42-
dist/mcat.bin
43-
mcat.zip
40+
path: mcat.bin

0 commit comments

Comments
 (0)