Skip to content

Commit

Permalink
Fix linux release build not containing architecture in filename
Browse files Browse the repository at this point in the history
  • Loading branch information
lasa01 committed Jun 18, 2024
1 parent f517368 commit 50c4844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: python setup.py bdist_blender_addon
- name: Rename artifact
shell: bash
run: for filename in dist/*.zip; do mv "${filename}" "${filename%.zip}-${{ runner.os }}.zip"; done;
run: for filename in dist/*.zip; do mv "${filename}" "${filename%.zip}-${{ runner.os }}-${{ runner.arch }}.zip"; done;
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 50c4844

Please sign in to comment.