We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f79ecf commit 86c85d2Copy full SHA for 86c85d2
.github/workflows/release.yml
@@ -27,7 +27,7 @@ jobs:
27
token: ${{ secrets.GITHUB_TOKEN }}
28
- name: Update Major Version Tag
29
run: |
30
- MAJOR_VERSION=v$(echo "${{ github.ref }}" | grep -oE '^v[0-9]+')
+ MAJOR_VERSION=$(echo "${{ github.ref }}" | grep -oE 'v[0-9]+')
31
git tag -f $MAJOR_VERSION
32
git push origin $MAJOR_VERSION --force
33
env:
0 commit comments