We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078a2e8 commit 540d17bCopy full SHA for 540d17b
.github/workflows/release_candidates.yml
@@ -48,7 +48,8 @@ jobs:
48
- name: Release JS Candidate
49
working-directory: ./packages/js-sdk
50
run: |
51
- npm publish --tag beta || exit 0
+ npm version prerelease --preid=beta
52
+ npm publish --tag beta
53
env:
54
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55
@@ -76,6 +77,7 @@ jobs:
76
77
- name: Release Candidate
78
working-directory: ./packages/python-sdk
79
80
+ poetry version prerelease
81
poetry build
82
poetry config pypi-token.pypi ${PYPI_TOKEN} && poetry publish --skip-existing
83
0 commit comments