2022-10-26 07:30:16 +00:00
|
|
|
name: Release
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
on:
|
|
|
|
# For manual tests.
|
|
|
|
workflow_dispatch:
|
|
|
|
release:
|
|
|
|
types: [created]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish-npm:
|
|
|
|
name: Publish NPM
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: '16.x'
|
|
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- run: npm publish
|
|
|
|
env:
|
2022-10-26 07:40:43 +00:00
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
2022-10-26 22:17:21 +00:00
|
|
|
|
|
|
|
publish-pypi:
|
|
|
|
name: Publish PyPi
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
python3 -m pip install --upgrade pip
|
|
|
|
python3 -m pip install setuptools wheel twine
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2022-10-26 22:29:02 +00:00
|
|
|
cd python
|
2022-10-26 22:17:21 +00:00
|
|
|
python3 setup.py sdist bdist_wheel
|
|
|
|
|
|
|
|
- name: Upload to PyPi
|
|
|
|
run: |
|
|
|
|
python3 -m twine upload dist/*
|
|
|
|
env:
|
|
|
|
TWINE_USERNAME: __token__
|
|
|
|
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|