Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/step-tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
token: ${{ secrets.github-token }}
- name: Create tag
env:
GH_TOKEN: ${{ secrets.github-token }}
VERSION: ${{ inputs.version }}
run: |
gh auth setup-git
git config --global user.name "GitHub Action Bot"
git config --global user.email "no-reply@after-life.co"
git tag -a $VERSION -m "Version $VERSION created via GitHub Actions"
git push origin $VERSION
git tag -a "$VERSION" -m "Version $VERSION created via GitHub Actions"
git push origin "$VERSION"
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Updated the release tagging workflow to use the repository automation token so tags can still be created when the tagged commit includes workflow changes (#742)
- Updated the release tagging workflow to explicitly authenticate tag pushes with the repository automation token so tags can still be created when the tagged commit includes workflow changes (#742)

## [7.1.2.20] - 2025-12-26

Expand Down