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 cc718e5 commit e94235eCopy full SHA for e94235e
.github/workflows/release.yml
@@ -21,8 +21,8 @@ jobs:
21
with:
22
submodules: true
23
fetch-depth: 0
24
- - run: echo "${{ inputs.tag }}"
25
- - run: echo "${{ inputs.environment }}"
+ - run: echo "${{ toJSON(inputs) }}"
+ - run: echo "${{ toJSON(github.event) }}"
26
- name: Set up Python
27
uses: actions/setup-python@v5
28
@@ -41,7 +41,7 @@ jobs:
41
42
publish-to-testpypi:
43
name: Publish to TestPyPI
44
- if: inputs.environment == 'testpypy'
+ if: ${{ github.event.inputs.environment == 'testpypi' }}
45
needs:
46
- build
47
runs-on: ubuntu-latest
@@ -66,7 +66,7 @@ jobs:
66
67
publish-to-pypi:
68
name: publish
69
- if: inputs.environment == 'pypy'
+ if: ${{ inputs.environment == 'pypi' }}
70
71
72
0 commit comments