We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da8f179 commit 724c9dbCopy full SHA for 724c9db
.github/workflows/release.yml
@@ -45,7 +45,9 @@ jobs:
45
46
- name: Read version
47
id: pkg
48
- run: echo "version=$(node -p \"require('./package.json').version\")" >> "$GITHUB_OUTPUT"
+ run: |
49
+ VERSION=$(node -p "require('./package.json').version")
50
+ echo "version=$VERSION" >> "$GITHUB_OUTPUT"
51
52
- name: Create GitHub Release
53
uses: actions/create-release@v1
0 commit comments