Skip to content

merge devel to master to release v0.13.1 (#1721) #13

merge devel to master to release v0.13.1 (#1721)

merge devel to master to release v0.13.1 (#1721) #13

Workflow file for this run

name: release_conda_and_github
on:
push:
tags:
- 'v*'
jobs:
release-to-pypi:
name: Release to pypi
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.x
architecture: x64
- name: Install dependencies
run: python -m pip install build
- run: python -m build
- name: Publish a Python distribution to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1