Release #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
on: | |
release: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
pypi-publish: | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/pybalance | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
steps: | |
- name: Checkout Repository 🛎️ | |
uses: actions/checkout@v3 | |
- name: Install Python 3.9 🐍 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Clean old build artifacts | |
run: rm -rf dist/* | |
- name: Build deps | |
run: python3 -m pip install -r environments/requirements.txt && pip install wheel | |
- name: Build artifacts | |
run: python setup.py sdist bdist_wheel | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |