1.12.6a4 #2
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 | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish: | |
name: "Publish release" | |
runs-on: "ubuntu-latest" | |
environment: release | |
steps: | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: just | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-python@v4" | |
with: | |
python-version: 3.12 | |
- name: "Install uv" | |
run: "pip install uv" | |
- name: "Run install deps" | |
run: "just bootstrap" | |
- name: "Build and release" | |
run: "just release" | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |