Skip to content

Commit fd4d79f

Browse files
committed
semver
1 parent 0665f8b commit fd4d79f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,21 +130,21 @@ jobs:
130130
var=$var+1
131131
TAG="0.0.$var"
132132
133-
echo "Tag: ${NPM_VER}"
133+
echo "Tag: ${TAG}"
134134
135-
gh release create $NPM_VER --draft --notes "Automatically built binaries"
136-
gh release edit $NPM_VER --title "🚀 Latest"
135+
gh release create $TAG --draft --notes "Automatically built binaries"
136+
gh release edit $TAG --title "🚀 Latest"
137137
138138
cd artifacts
139139
140140
for name in *; do
141141
cd "${{ github.workspace }}/artifacts/${name}/release"
142142
chmod +x ./*
143143
tar -czvf ./${name}.tar.gz ./*
144-
gh release upload $NPM_VER ${name}.tar.gz
144+
gh release upload $TAG ${name}.tar.gz
145145
done
146146
147-
gh release edit $NPM_VER --draft=false
147+
gh release edit $TAG --draft=false
148148
149149
echo "VERSION=$TAG" >> "$GITHUB_OUTPUT"
150150

0 commit comments

Comments
 (0)