Skip to content

Commit

Permalink
always same zip for easier download urls
Browse files Browse the repository at this point in the history
  • Loading branch information
mweibel committed Aug 10, 2023
1 parent 0c7973b commit b586ebe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
files: helio_blender_addon-*.zip
files: helio_blender_addon.zip
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ submodule:
git submodule update --init

release: submodule
rm helio-blender-addon-$(TAG).zip || true
rm helio-blender-addon.zip || true
find helio_blender_addon -iname '__pycache__' -exec rm -Rf {} \;
find helio_blender_addon -iname '*.pyc' -exec rm {} \;
zip -r helio_blender_addon-$(TAG).zip helio_blender_addon/
zip -r helio_blender_addon.zip helio_blender_addon/
2 changes: 1 addition & 1 deletion helio_blender_addon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
bl_info = {
"name": "Helio Cloud Rendering",
"blender": (3, 20, 0),
"version": (0, 3, 2),
"version": (0, 3, 3),
"category": "Render",
"tracker_url": "https://github.com/helio/blender-addon/issues"
}
Expand Down

0 comments on commit b586ebe

Please sign in to comment.