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 9004221 commit cd51fa0Copy full SHA for cd51fa0
.github/workflows/release.yml
@@ -20,16 +20,17 @@ jobs:
20
- name: Install dependencies
21
run: |
22
python -m pip install --upgrade pip
23
- pip install packaging setuptools twine wheel
+ pip install twine wheel build
24
- name: Publish the Python package
25
env:
26
TWINE_USERNAME: __token__
27
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
28
29
- python setup.py sdist bdist_wheel
+ python -m build
30
twine upload dist/*
31
- name: Publish the NPM package
32
33
+ cd js
34
echo $PRE_RELEASE
35
if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi
36
npm publish --tag ${TAG} --access public
0 commit comments