Skip to content

Commit 8c2d21b

Browse files
ci: try to fix build action
1 parent 8f4d631 commit 8c2d21b

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build_addons.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,15 @@ jobs:
2020
cd _build
2121
python -m build
2222
23+
- name: Create Release Tag
24+
id: release_tag
25+
run: |
26+
echo "::set-output name=tag::release_$(date +"%Y_%m_%d_%H_%M_%S")"
27+
2328
- name: Create Release
2429
uses: softprops/action-gh-release@v2
2530
with:
31+
tag_name: ${{steps.release_tag.outputs.tag}}
2632
files: _out/addons.zip
2733
generate_release_notes: true
28-
make-latest: true
34+
make_latest: true

0 commit comments

Comments
 (0)