We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06e7ad0 commit 071adddCopy full SHA for 071addd
1 file changed
.github/workflows/release.yml
@@ -98,7 +98,9 @@ jobs:
98
99
- name: Get the new version number
100
id: get_version
101
- run: echo "version=$(node -p \"require('./package.json').version\")" >> $GITHUB_OUTPUT
+ run: |
102
+ NEW_VERSION=$(node -p "require('./package.json').version")
103
+ echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
104
105
deploy-pages:
106
name: Deploy to GitHub Pages
0 commit comments