Skip to content

Commit

Permalink
Add automated release process
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Oct 25, 2024
1 parent c934531 commit 049c5c8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
tags:
- '**'
pull_request:

concurrency:
Expand Down Expand Up @@ -91,3 +93,23 @@ jobs:
with:
name: html-report
path: htmlcov

release:
needs: [coverage]
if: success() && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-24.04
environment: release

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- uses: astral-sh/setup-uv@v3

- name: Build
run: uv build

- uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 049c5c8

Please sign in to comment.