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 c02a248 commit f3ba30eCopy full SHA for f3ba30e
.github/workflows/npm.yml
@@ -24,7 +24,9 @@ jobs:
24
25
- name: Install dependencies and build 🔧
26
run: |
27
- jq '.version="'$(git describe --tags)'"' package.json > package.json.new
+ TAG=$(git describe --tags)
28
+ echo "TAG=${TAG}" >> $GITHUB_ENV
29
+ jq '.version="'$TAG'"' package.json > package.json.new
30
mv package.json.new package.json
31
npm i
32
0 commit comments