Skip to content

Do not clip to 0

Do not clip to 0 #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
jobs:
release:
runs-on: ubuntu-latest
environment: SimDec
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.13
uses: actions/setup-python@v4
with:
python-version: '3.13'
architecture: 'x64'
- name: Install hatch
run: pip install hatch
- name: Build
run: hatch build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1