Skip to content

Commit c685849

Browse files
restore zip step before upload
1 parent 7233ac0 commit c685849

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/linux-pyinstaller.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,17 @@ jobs:
8787
--add-data="pytranscriber/gui/*.qm:pytranscriber/gui/" \
8888
--add-data="$ASSETS_PATH:whisper/assets"
8989
90-
- name: Rename the binary with version number
90+
- name: Rename and zip the binary with version number
9191
run: |
9292
cd dist
9393
mv main "pyTranscriber-${VERSION}"
94+
zip -r "pyTranscriber-linux-${VERSION}.zip" "pyTranscriber-${VERSION}"
9495
9596
- name: Upload built executable
9697
uses: actions/upload-artifact@v4
9798
with:
9899
name: pyTranscriber-linux-${{ env.VERSION }}
99-
path: ./dist/pyTranscriber-linux-${{ env.VERSION }}
100+
path: ./dist/pyTranscriber-linux-${{ env.VERSION }}.zip
100101

101102
download:
102103
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)