mirror of
https://github.com/onyx-and-iris/vban-cli.git
synced 2026-03-02 21:19:11 +00:00
29 lines
512 B
YAML
29 lines
512 B
YAML
name: 'Publish'
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: pypi
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v7
|
|
- name: Install Python 3.13
|
|
run: uv python install 3.13
|
|
- name: Build
|
|
run: uv build
|
|
- name: Publish
|
|
run: uv publish
|