fix: fix format of --bind argument for deploy (#132) #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
environment: publish-pypi | |
permissions: | |
id-token: write | |
attestations: write | |
contents: read | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Build dist packages | |
run: uv build | |
- name: Publish | |
uses: pypa/gh-action-pypi-publish@release/v1 |