Skip to content

Commit

Permalink
remove needs and add echo for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bobleesj committed Oct 19, 2024
1 parent eef2497 commit 37bc8db
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/_build-wheel-release-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,14 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

pypi-publish:
needs: [github-pre-release, github-release]
runs-on: ubuntu-latest
if: needs.github-pre-release.result == 'success' || needs.github-release.result == 'success'
runs-on: ubuntu-latest
steps:
- name: Check job result
run: |
echo "Pre-release result: ${{ needs.github-pre-release.result }}"
echo "Release result: ${{ needs.github-release.result }}"
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 37bc8db

Please sign in to comment.