We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0df05c6 commit 29b53e1Copy full SHA for 29b53e1
.github/workflows/publish.yaml
@@ -49,3 +49,20 @@ jobs:
49
repository-url: https://test.pypi.org/legacy/
50
skip-existing: true
51
verbose: true
52
+ publish-pypi:
53
+ needs: build
54
+ runs-on: ubuntu-latest
55
+ environment: production
56
+ permissions:
57
+ id-token: write
58
+ contents: read
59
+ steps:
60
+ - name: Download build artifacts
61
+ uses: actions/download-artifact@v4
62
+ with:
63
+ name: simple-http-checker-${{ github.sha }}
64
+ path: dist/
65
+ - name: Publish to PyPI
66
+ uses: pypa/gh-action-pypi-publish@release/v1
67
68
+ verbose: true
0 commit comments