Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Publish Package
on:
push:
tags:
- "v*"
workflow_dispatch:
permissions:
contents: read
id-token: write
concurrency:
group: publish-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
publish:
name: Build And Publish
runs-on: ubuntu-latest
steps:
<<<<<<< HEAD

Check failure on line 23 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- uses: actions/checkout@v6
=======
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v5
>>>>>>> ea959e0dcbc4cccf51bb6d6beb1a832242d0c37c
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Validate release
run: |
uv sync --frozen --all-extras
make prod
- name: Build and Publish
run: |
uv build
uv publish --trusted-publishing always dist/*