We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29847f0 commit 570a8aeCopy full SHA for 570a8ae
1 file changed
.github/workflows/release.yaml
@@ -13,13 +13,15 @@ jobs:
13
if: startsWith(github.event.release.tag_name, 'v')
14
steps:
15
- name: Checkout
16
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
17
with:
18
fetch-depth: 0
19
- name: Update major version tag
20
env:
21
RELEASE_TAG: ${{ github.event.release.tag_name }}
22
run: |
23
+ git config user.name "github-actions[bot]"
24
+ git config user.email "github-actions[bot]@users.noreply.github.com"
25
# Extract major version (e.g., v1.9.0 -> v1)
26
MAJOR_TAG="${RELEASE_TAG%%.*}"
27
echo "Moving ${MAJOR_TAG} tag to ${RELEASE_TAG}"
0 commit comments