Skip to content

Publish

Publish #21

Workflow file for this run

# Per:
# https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
name: Publish
on:
release:
types: [published, released]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and publish to pypi
if: "github.event.release.prerelease"
uses: JRubics/[email protected]
with:
repository_name: "testpypi"
repository_url: "https://test.pypi.org/legacy/"
python_version: "3.9.5"
pypi_token: ${{ secrets.TELLOR_DISPUTABES_TEST_PYPI_API_TOKEN }}
- name: Build and publish to pypi
if: "!github.event.release.prerelease"
uses: JRubics/[email protected]
with:
python_version: "3.9.5"
pypi_token: ${{ secrets.TELLOR_DISPUTABES_PYPI_API_TOKEN }}