Skip to content

Commit

Permalink
fix: version extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul committed Aug 27, 2024
1 parent a291a0a commit 64d8d28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- name: Extract versions
run: |
echo "GIT_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
echo "CM_VERSION=$(node -p \"require('./packages/codemirror-surrealql/package.json').version\")" >> $GITHUB_ENV
echo "LZ_VERSION=$(node -p \"require('./packages/lezer-surrealql/package.json').version\")" >> $GITHUB_ENV
echo "CM_VERSION=$(node -p "require('./packages/codemirror-surrealql/package.json').version")" >> $GITHUB_ENV
echo "LZ_VERSION=$(node -p "require('./packages/lezer-surrealql/package.json').version")" >> $GITHUB_ENV
- name: Assert package versions
run: |
Expand Down

0 comments on commit 64d8d28

Please sign in to comment.