Skip to content

Commit

Permalink
Fix release tag action
Browse files Browse the repository at this point in the history
  • Loading branch information
aiguofer committed Dec 18, 2024
1 parent ef984bf commit 29d5e82
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create-release-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ jobs:
if: "startsWith(github.event.head_commit.message, 'version:')"
steps:
- uses: actions/checkout@v4

- name: Setup Python ${{ env.PYTHON_VERSION }} environment
uses: ./.github/actions/setup-python-env

- name: Create tag
run: |
TAG=$(hatch version)
git config user.name "release-bot"
git config user.email "[email protected]"
git tag "$TAG"
git push origin $TAG

0 comments on commit 29d5e82

Please sign in to comment.