We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3cd65 commit 0e05284Copy full SHA for 0e05284
.github/workflows/release.yaml
@@ -5,6 +5,7 @@ on:
5
# tags:
6
# - v*
7
workflow_call:
8
+ workflow_dispatch:
9
10
concurrency: release-${{ github.ref }}
11
@@ -13,7 +14,7 @@ jobs:
13
14
if: startsWith(github.ref, 'refs/tags/v')
15
name: Create release
16
runs-on: ubuntu-latest
- environment: Release
17
+ environment: release
18
permissions:
19
contents: write
20
steps:
@@ -38,7 +39,7 @@ jobs:
38
39
40
name: Publish package to PyPI
41
42
43
44
id-token: write
45
@@ -56,3 +57,6 @@ jobs:
56
57
58
- name: Upload distributions to PyPI
59
uses: pypa/gh-action-pypi-publish@release/v1
60
+ with:
61
+ user: __token__
62
+ password: ${{ secrets.PYPI_TOKEN }}
0 commit comments