Skip to content

Commit

Permalink
fix run command in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsnlp committed Nov 20, 2023
1 parent 687471a commit 0912917
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@ jobs:
path: dist

- name: Show artifact directory structure
run: find ${{ steps.download.outputs.download-path }}
run: echo 'Github event info:'
run: echo ${{github.event_name}}
run: echo ${{github.event.ref}}
run: |
find ${{ steps.download.outputs.download-path }}
echo 'Github event info:'
echo ${{github.event_name}}
echo ${{github.event.ref}}
- name: Publish distribution 📦 to Test PyPI
# upload to Test PyPI on every tag NOT starting with 'v'
Expand Down

0 comments on commit 0912917

Please sign in to comment.