Merge pull request #7 from predict-idlab/fix_obelisk_precision #6
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: Release | |
on: | |
push: | |
tags: | |
# Publish on any tag starting with a `v`, e.g. v1.2.3 | |
- '*' | |
jobs: | |
pypi: | |
name: Publish to PyPI | |
runs-on: ubuntu-latest | |
# Environment and permissions trusted publishing. | |
environment: | |
# Create this environment in the GitHub repository under Settings -> Environments | |
name: release | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- run: uv build | |
- run: uv publish --trusted-publishing always |