Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Merge pull request #16 from styx-api/dependabot/github_actions/astral… #4

Merge pull request #16 from styx-api/dependabot/github_actions/astral…

Merge pull request #16 from styx-api/dependabot/github_actions/astral… #4

Workflow file for this run

name: Publish to PyPi
permissions:
actions: write
on:
push:
tags:
- '*'
jobs:
pypi-release:
name: PyPi Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies and build
run: |
uv sync --frozen --no-dev --no-install-project
uv build
- name: Publish to PyPi
id: pypi_publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
verbose: true