Skip to content

Bump cda-tum/mqt-workflows from 1.1.3 to 1.1.4 in the github-actions group #26

Bump cda-tum/mqt-workflows from 1.1.3 to 1.1.4 in the github-actions group

Bump cda-tum/mqt-workflows from 1.1.3 to 1.1.4 in the github-actions group #26

Workflow file for this run

name: CD
on:
release:
types: [published]
workflow_dispatch:
pull_request:
paths:
- .github/workflows/cd.yml
jobs:
python-packaging:
name: 🐍 Packaging
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.1.4
with:
setup-z3: true
z3-version: 4.12.6 # 4.13.0 has incorrectly tagged manylinux wheels
deploy:
if: github.event_name == 'release' && github.event.action == 'published'
name: 🚀 Deploy to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/mqt.qmap
permissions:
id-token: write
attestations: write
contents: read
needs: [python-packaging]
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true
- name: Generate artifact attestation for sdist and wheel(s)
uses: actions/attest-build-provenance@v1.3.2
with:
subject-path: "dist/*"
- uses: pypa/gh-action-pypi-publish@release/v1