Skip to content

Commit

Permalink
I'm too dumb for GHA's if
Browse files Browse the repository at this point in the history
And the docs are too bad
  • Loading branch information
hynek committed Mar 23, 2024
1 parent 467d681 commit af1d0a0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ runs:
name: Packages
path: /tmp/baipp/dist/*

- run: /tmp/baipp/bin/check-wheel-contents /tmp/baipp/dist/*.whl
- name: Check wheel contents if one was built
run: |
if [[ ${{ inputs.skip-wheel }} != 'true' ]]; then
/tmp/baipp/bin/check-wheel-contents /tmp/baipp/dist/*.whl
fi
shell: bash
working-directory: ${{ inputs.path }}
if: ${{ inputs.skip-wheel != 'true' }}

- name: Check PyPI README
shell: bash
Expand Down

0 comments on commit af1d0a0

Please sign in to comment.