Skip to content

Updated the TS Library. (#27) #21

Updated the TS Library. (#27)

Updated the TS Library. (#27) #21

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
publish-to-pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
cp schema.json seq-json-schema/
python3 setup.py sdist
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
continue-on-error: true
with:
password: ${{ secrets.PYPI_API_TOKEN }}
print_hash: true
verbose: true
- name: Cleanup
run: |
rm -rf *.egg-info dist
rm seq-json-schema/schema.json