Skip to content

Commit 8d1fa34

Browse files
authored
fix(ci): configure git identity for release tags (#45)
1 parent 24b3ede commit 8d1fa34

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/release-please.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
TAG_NAME: ${{ steps.release.outputs.tag_name }}
3636
run: |
3737
echo "Updating floating tag v${MAJOR_VERSION} to point to ${TAG_NAME}"
38+
git config user.name "github-actions[bot]"
39+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
3840
git tag -d "v${MAJOR_VERSION}" 2>/dev/null || true
3941
git push origin ":refs/tags/v${MAJOR_VERSION}" 2>/dev/null || true
4042
git tag -a "v${MAJOR_VERSION}" -m "Floating tag for v${MAJOR_VERSION} major releases"

0 commit comments

Comments
 (0)