Skip to content

⬆️ update mqt-workflows to v1.3 (moving tag) #30

⬆️ update mqt-workflows to v1.3 (moving tag)

⬆️ update mqt-workflows to v1.3 (moving tag) #30

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/[email protected]

Check failure on line 13 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / CD

Invalid workflow file

The workflow is not valid. In .github/workflows/cd.yml (Line: 13, Col: 11): Error from called workflow cda-tum/mqt-workflows/.github/workflows/[email protected] (Line: 122, Col: 12): Job 'build_wheels_emulation' depends on unknown job 'dist'.
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.qcec
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/[email protected]
with:
subject-path: "dist/*"
- uses: pypa/gh-action-pypi-publish@release/v1