Skip to content

Commit 86c85d2

Browse files
authored
Fixing the release flow.
1 parent 8f79ecf commit 86c85d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
token: ${{ secrets.GITHUB_TOKEN }}
2828
- name: Update Major Version Tag
2929
run: |
30-
MAJOR_VERSION=v$(echo "${{ github.ref }}" | grep -oE '^v[0-9]+')
30+
MAJOR_VERSION=$(echo "${{ github.ref }}" | grep -oE 'v[0-9]+')
3131
git tag -f $MAJOR_VERSION
3232
git push origin $MAJOR_VERSION --force
3333
env:

0 commit comments

Comments
 (0)