Skip to content

Commit

Permalink
Update python_build_all_os.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
douglas-fva authored Oct 12, 2023
1 parent 88869ed commit b4baaa9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python_build_all_os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
- name: Zip build folder
uses: montudor/action-zip@v1
with:
args: zip -qq -r linux.zip build/exe.linux-x86_64-3.11
args: zip -qq -r ${{format('{0}_linux.zip', github.ref_name)}} build/exe.linux-x86_64-3.11
- name: Create GitHub Release
uses: ncipollo/[email protected]
with:
artifacts: "linux.zip"
artifacts: ${{format('{0}_linux.zip', github.ref_name)}}
body: "TODO Document me!"
allowUpdates: true
Run-on-mac:
Expand Down Expand Up @@ -89,11 +89,11 @@ jobs:
python setup.py build
git status --porcelain
- name: Zip build folder
run: zip -r mac_os.zip build/exe.macosx-10.9-x86_64-3.11
run: zip -r ${{format('{0}_macos.zip', github.ref_name)}} build/exe.macosx-10.9-x86_64-3.11
- name: Create GitHub Release
uses: ncipollo/[email protected]
with:
artifacts: "mac_os.zip"
artifacts: ${{format('{0}_macos.zip', github.ref_name)}}
body: "TODO Document me!"
allowUpdates: true
Run-on-windows:
Expand Down Expand Up @@ -132,10 +132,10 @@ jobs:
run: |
python setup.py build
- name: Zip build folder
run: Compress-Archive build/exe.win-amd64-3.11 windows.zip
run: Compress-Archive build/exe.win-amd64-3.11 ${{format('{0}_windows.zip', github.ref_name)}}
- name: Create GitHub Release
uses: ncipollo/[email protected]
with:
artifacts: "windows.zip"
artifacts: ${{format('{0}_windows.zip', github.ref_name)}}
body: "TODO Document me!"
allowUpdates: true

0 comments on commit b4baaa9

Please sign in to comment.