We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac58c8 commit ed68c35Copy full SHA for ed68c35
.github/workflows/publish.yaml
@@ -45,7 +45,10 @@ jobs:
45
# checks if the repository is clean and fails if it's not. This is complicated for us, given we rename
46
# the package dynamically and we don't want to commit the changes to the package.json.
47
- name: Publish the sql-parser package
48
- run: npm publish --workspace packages/sql-parser
+ run: |
49
+ GIT_TAG=${{ github.ref_name }}
50
+ VERSION="${GIT_TAG#v}"
51
+ yarn workspace @deepnote/sql-parser version --new-version ${VERSION} --no-git-tag-version && npm publish --workspace packages/sql-parser
52
53
publish-server:
54
name: Publish Server
0 commit comments