Skip to content

Commit

Permalink
wip-python-bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGenix committed Dec 14, 2021
1 parent 408ddde commit e687984
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish-to-pypi-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: DEBUG
run: echo ${{ toJSON(github.event) }}
run: echo "${{ toJSON(github.event) }}"
- name: DEBUG2
run: echo ${{ startsWith(github.ref, 'refs/tags/py-') }}
run: echo "${{ startsWith(github.ref, 'refs/tags/py-') }}"
- name: DEBUG3
run: echo ${{ !github.event.release.draft }}
run: echo "${{ !github.event.release.draft }}"
- name: DEBUG4
run: echo ${{ !github.event.release.prerelease }}
run: echo "${{ !github.event.release.prerelease }}"
- name: DEBUG5
run: echo "${{ startsWith(github.ref, 'refs/tags/py-') && !github.event.release.draft && !github.event.release.prerelease }}"
- name: Download files from the release
uses: robinraju/[email protected]
with:
Expand Down

0 comments on commit e687984

Please sign in to comment.