Skip to content

Commit 071addd

Browse files
committed
ci(release): fix ci command
1 parent 06e7ad0 commit 071addd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yml

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

9999
- name: Get the new version number
100100
id: get_version
101-
run: echo "version=$(node -p \"require('./package.json').version\")" >> $GITHUB_OUTPUT
101+
run: |
102+
NEW_VERSION=$(node -p "require('./package.json').version")
103+
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
102104
103105
deploy-pages:
104106
name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)