mirror of
https://github.com/internetarchive/brozzler.git
synced 2026-01-06 11:35:31 -05:00
24 lines
413 B
YAML
24 lines
413 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '**[0-9]+.[0-9]+.[0-9]+*'
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
|
|
- name: Build package
|
|
run: uv build
|
|
|
|
- name: Publish package
|
|
run: uv publish
|
|
if: ${{ !github.event.pull_request }}
|