We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.app
1 parent eb33669 commit 150bae6Copy full SHA for 150bae6
.github/workflows/build-release.yml
@@ -115,11 +115,14 @@ jobs:
115
- name: Build app with PyInstaller
116
run: |
117
.venv/bin/pyinstaller ./tchMaterial-parser.spec
118
+ - name: Create zip archive
119
+ run: |
120
cd dist
121
mv tchMaterial-parser tchMaterial-parser-mac-arm64.app
122
+ zip -r tchMaterial-parser-mac-arm64.zip tchMaterial-parser-mac-arm64.app
123
- name: Upload Release Asset
124
uses: softprops/action-gh-release@v2
125
with:
- files: dist/tchMaterial-parser-mac-arm64.app
126
+ files: dist/tchMaterial-parser-mac-arm64.zip
127
env:
128
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments