We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 503dbf2 commit e560e21Copy full SHA for e560e21
.github/workflows/publish.yml
@@ -3,7 +3,7 @@ name: Publish
3
on:
4
push:
5
tags:
6
- - "v*.*.*"
+ - "*.*.*"
7
8
permissions:
9
contents: read # Checkout code
@@ -40,7 +40,7 @@ jobs:
40
shell: bash
41
run: |
42
TAG="${GITHUB_REF_NAME}"
43
- VERSION="${TAG#v}"
+ VERSION="${TAG}"
44
echo "Setting package.json version to ${VERSION}"
45
pnpm version --no-git-tag-version "${VERSION}"
46
package.json
@@ -69,7 +69,7 @@
69
"branches": [
70
"main"
71
],
72
- "tagFormat": "v${version}",
+ "tagFormat": "${version}",
73
"plugins": [
74
[
75
"@semantic-release/commit-analyzer",
0 commit comments