Skip to content

get things in a decent state #1

get things in a decent state

get things in a decent state #1

Workflow file for this run

name: "Test Publish"
on:
push:
branches: [ "main", "staging"]
pull_request:
branches: [ "main", "staging" ]
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
env:
TEST_PYPI_SECRET_KEY: ${{ secrets.TEST_PYPI_SECRET_KEY }}
run: uv publish --index testpypi --token $TEST_PYPI_SECRET_KEY