There was an error while loading. Please reload this page.
1 parent 24b3ede commit 8d1fa34Copy full SHA for 8d1fa34
1 file changed
.github/workflows/release-please.yml
@@ -35,6 +35,8 @@ jobs:
35
TAG_NAME: ${{ steps.release.outputs.tag_name }}
36
run: |
37
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"
40
git tag -d "v${MAJOR_VERSION}" 2>/dev/null || true
41
git push origin ":refs/tags/v${MAJOR_VERSION}" 2>/dev/null || true
42
git tag -a "v${MAJOR_VERSION}" -m "Floating tag for v${MAJOR_VERSION} major releases"
0 commit comments