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 be4a8be commit c0573e4Copy full SHA for c0573e4
.github/workflows/npm-publish.yml
@@ -33,7 +33,8 @@ jobs:
33
- name: Get version from tag
34
id: version
35
run: |
36
- VERSION="${GITHUB_REF#refs/tags/v}"
+ # Remove refs/tags/ prefix to get just the tag name
37
+ VERSION="${GITHUB_REF#refs/tags/}"
38
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
39
echo "Extracted version: $VERSION"
40
0 commit comments