Skip to content

2.113.0 (2023-09-11) #92

2.113.0 (2023-09-11)

2.113.0 (2023-09-11) #92

Workflow file for this run

name: pypi
on:
release:
types: [released]
jobs:
publish:
name: Publish to PyPi
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3
- name: Install Dependencies
run: |
pip install wheel
- name: Build rez
run: |
python setup.py sdist bdist_wheel
- name: Upload to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: '${{ secrets.PYPI_API_TOKEN }}'