Bump to 2.2.1 #32
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 PyPI, installers and docker container | |
on: | |
push: | |
tags: "v*" | |
jobs: | |
release_pypi: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
make build | |
twine upload dist/* | |
release_environment: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
pip install . | |
pip freeze > requirements.txt | |
- name: Publish Latest Draft | |
run: | | |
# Get the latest draft release | |
RELEASE_DATA=$(gh api repos/:owner/:repo/releases | jq '[.[] | select(.draft == true)][0]') | |
RELEASE_ID=$(echo $RELEASE_DATA | jq '.id') | |
# Publish the release | |
gh api -X PATCH repos/:owner/:repo/releases/$RELEASE_ID --field draft=false | |
gh release upload $RELEASE_ID requirements.txt --clobber | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |