Skip to content

budgets 0.6.0: revocation reaches the meter (revoke, drain, final rec… #8

budgets 0.6.0: revocation reaches the meter (revoke, drain, final rec…

budgets 0.6.0: revocation reaches the meter (revoke, drain, final rec… #8

Workflow file for this run

name: Release
on:
push:
tags: ["v*"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install build
- run: python -m build
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
publish:
needs: build
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # OIDC trusted publishing — no tokens anywhere
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1