File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,21 +17,21 @@ jobs:
17
17
uses : deargen/workflows/.github/workflows/commit-changelog-and-release.yml@master
18
18
with :
19
19
version-tag : ${{ github.event.inputs.version-tag }}
20
- dry-run : ${{ github.event.inputs.dry-run == true }}
20
+ dry-run : ${{ github.event.inputs.dry-run == ' true' }}
21
21
changelog-path : docs/CHANGELOG.md
22
22
exclude-types : build,docs,style,other
23
23
24
24
publish-to-pypi :
25
+ if : ${{ github.event.inputs.dry-run == 'false' }}
26
+ needs : commit-changelog-and-release
25
27
runs-on : ubuntu-24.04
26
28
steps :
27
29
- name : Set up Python 3.11
28
- if : ${{ github.event.inputs.dry-run == 'false' }}
29
30
uses : actions/setup-python@v4
30
31
with :
31
32
python-version : 3.11
32
33
33
34
- name : Build and upload to PyPI
34
- if : ${{ github.event.inputs.dry-run == 'false' }}
35
35
run : |
36
36
python -m pip install --upgrade pip
37
37
pip3 install build twine
You can’t perform that action at this time.
0 commit comments