Skip to content

v0.3.2

v0.3.2 #11

Workflow file for this run

name: Publish a new release
on:
release:
# Only use the types keyword to narrow down the activity types that will trigger your workflow.
types:
- published
jobs:
publish-docs:
uses: ./.github/workflows/release-docs.yml
publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
with:
submodules: "true"
- name: Set up Python 3.9
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
with:
python-version: "3.9"
- name: Build project
run: |
python -m pip install --upgrade pip wheel
python -m pip install -r ./piped/python/base-requirements/nox.txt
python -m nox -s build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597