Skip to content

Commit de6a33a

Browse files
committed
Don't prefix tags with 'v'
1 parent 24c0e5e commit de6a33a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Release
33
on:
44
push:
55
tags:
6-
- v[0-9]+.[0-9]+.[0-9]+
7-
- v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+
6+
- '[0-9]+.[0-9]+.[0-9]+'
7+
- '[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+'
88

99
jobs:
1010
build:
@@ -18,7 +18,7 @@ jobs:
1818
registry-url: 'https://registry.npmjs.org'
1919

2020
- name: Set release version
21-
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
21+
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
2222

2323
- name: Create Release
2424
id: create_release

0 commit comments

Comments
 (0)