Skip to content

Commit f3ba30e

Browse files
committed
1.0.0
1 parent c02a248 commit f3ba30e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/npm.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424

2525
- name: Install dependencies and build 🔧
2626
run: |
27-
jq '.version="'$(git describe --tags)'"' package.json > package.json.new
27+
TAG=$(git describe --tags)
28+
echo "TAG=${TAG}" >> $GITHUB_ENV
29+
jq '.version="'$TAG'"' package.json > package.json.new
2830
mv package.json.new package.json
2931
npm i
3032

0 commit comments

Comments
 (0)