We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9689de commit 2208b2aCopy full SHA for 2208b2a
1 file changed
.github/workflows/publish.yml
@@ -33,13 +33,13 @@ jobs:
33
run: |
34
# Extract version from package.json
35
PKG_VERSION=$(jq -r .version package.json)
36
-
+
37
# Extract version from git tag (strip 'v' prefix)
38
TAG_VERSION=${GITHUB_REF#refs/tags/v}
39
40
echo "Package version: $PKG_VERSION"
41
echo "Tag version: $TAG_VERSION"
42
43
if [ "$PKG_VERSION" != "$TAG_VERSION" ]; then
44
echo "❌ Error: Version mismatch!"
45
echo " package.json version: $PKG_VERSION"
@@ -48,7 +48,7 @@ jobs:
48
echo "Please ensure the git tag matches the version in package.json"
49
exit 1
50
fi
51
52
echo "✅ Version validation passed: $PKG_VERSION"
53
54
- name: Build WASM
0 commit comments