Skip to content

Commit

Permalink
Add debug echo
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed May 22, 2024
1 parent e1c4e99 commit dac623c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/angr-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,12 @@ jobs:
- name: Collect all packages to upload
run: find artifacts \( -name "*.tar.gz" -o -name "*.whl" \) -exec mv {} dist/ \;

- name: Echo conditions
run: |
echo "Event name: ${{ github.event_name }}"
echo "Dry run parameter: ${{ github.event.inputs.dry_run }}"
echo "Dry run: ${{ github.event_name == 'schedule' || github.event.inputs.dry_run == false }}"
- name: Publish distribution to PyPI
if: github.event_name == 'schedule' || github.event.inputs.dry_run == false
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit dac623c

Please sign in to comment.