File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments