From dac623cf7483556203bd1a797a65750775310b37 Mon Sep 17 00:00:00 2001 From: Kevin Phoenix Date: Wed, 22 May 2024 10:01:02 -0700 Subject: [PATCH] Add debug echo --- .github/workflows/angr-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/angr-release.yml b/.github/workflows/angr-release.yml index 478e44b..adfbe07 100644 --- a/.github/workflows/angr-release.yml +++ b/.github/workflows/angr-release.yml @@ -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