We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26dd3aa commit c9744a6Copy full SHA for c9744a6
.github/workflows/cd.yml
@@ -9,5 +9,21 @@ jobs:
9
name: 🐍 Packaging
10
uses: cda-tum/mqt-core/.github/workflows/reusable-python-packaging.yml@main
11
with:
12
- package-name: mqt.qmap
13
setup-z3: true
+
14
+ deploy:
15
+ if: github.event_name == 'release' && github.event.action == 'published'
16
+ name: 🚀 Deploy to PyPI
17
+ runs-on: ubuntu-latest
18
+ environment:
19
+ name: pypi
20
+ url: https://pypi.org/p/mqt.qmap
21
+ permissions:
22
+ id-token: write
23
+ needs: [python-packaging]
24
+ steps:
25
+ - uses: actions/download-artifact@v3
26
+ with:
27
+ name: artifact
28
+ path: dist
29
+ - uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments