We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7233ac0 commit c685849Copy full SHA for c685849
1 file changed
.github/workflows/linux-pyinstaller.yml
@@ -87,16 +87,17 @@ jobs:
87
--add-data="pytranscriber/gui/*.qm:pytranscriber/gui/" \
88
--add-data="$ASSETS_PATH:whisper/assets"
89
90
- - name: Rename the binary with version number
+ - name: Rename and zip the binary with version number
91
run: |
92
cd dist
93
mv main "pyTranscriber-${VERSION}"
94
+ zip -r "pyTranscriber-linux-${VERSION}.zip" "pyTranscriber-${VERSION}"
95
96
- name: Upload built executable
97
uses: actions/upload-artifact@v4
98
with:
99
name: pyTranscriber-linux-${{ env.VERSION }}
- path: ./dist/pyTranscriber-linux-${{ env.VERSION }}
100
+ path: ./dist/pyTranscriber-linux-${{ env.VERSION }}.zip
101
102
download:
103
runs-on: ubuntu-22.04
0 commit comments