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 a1b23f8 commit df19c6aCopy full SHA for df19c6a
.github/workflows/tests+pypi.yml
@@ -215,5 +215,11 @@ jobs:
215
uses: pypa/gh-action-pypi-publish@unstable/v1
216
with:
217
repository_url: https://test.pypi.org/legacy/
218
- - if: github.event_name == 'release' && github.event.action == 'created'
+ - run: |
219
+ echo "github.event_name:" ${{ github.event_name }}
220
+ echo "github.event.action:" ${{ github.event.action }}
221
+ echo "github.event.prerelease:" ${{ github.event.prerelease }}
222
+ echo "env.GITHUB_REF:" ${{ env.GITHUB_REF }}
223
+ echo "env.GITHUB_REF:" ${{ env.GITHUB_REF_NAME }}
224
+ - if: github.event_name == 'release' && github.event.prerelease == false
225
0 commit comments