Files
quickbot_cli/.gitea/workflows/release-testpypi.yaml
Alexander Kalinovsky 2954913673
Some checks failed
CI / test (3.13) (push) Failing after 22s
initial release
2025-08-25 19:45:21 +03:00

35 lines
684 B
YAML

# SPDX-FileCopyrightText: 2025 Alexander Kalinovsky <a@k8y.ru>
#
# SPDX-License-Identifier: MIT
name: Publish to TestPyPI
on:
push:
tags:
- "v*.*.*rc*"
- "v*.*.*a*"
- "v*.*.*b*"
build-publish:
permissions:
id-token: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
python-version: "3.13"
- name: Build wheel & sdist
run: |
uv build
- name: Publish (TestPyPI)
run: |
uv publish --repository-url https://test.pypi.org/legacy/ --skip-existing