Skip to content

Commit

Permalink
Add tag creation
Browse files Browse the repository at this point in the history
  • Loading branch information
mentoster2 committed Mar 24, 2024
1 parent aaf3b91 commit d97d496
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ jobs:
# skip SDK setup, we already did it in previous step
skip-setup: true
task: lint

- name: Create a new tag
id: create_tag
run: |
TAG_NAME=my-app-$(date +'%Y%m%d%H%M%S')
git tag $TAG_NAME
git push origin $TAG_NAME
echo "::set-output name=TAG_NAME::$TAG_NAME"
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
with:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ dist/*
.editorconfig
.env
.ufbt
/.vscode/c_cpp_properties.json
/.vscode/launch.json

0 comments on commit d97d496

Please sign in to comment.