ci: don't update package locks if we are not releasing node (#1323)

This doesn't actually block a python-only release since this step runs
after the version bump has been pushed but it still would be nice for
the git job to finish successfully.
This commit is contained in:
Weston Pace
2024-05-30 04:42:06 -07:00
committed by GitHub
parent 16eff254ea
commit 1e85b57c82

View File

@@ -94,6 +94,6 @@ jobs:
branch: ${{ github.ref }}
tags: true
- uses: ./.github/workflows/update_package_lock
if: ${{ inputs.dry_run }} == "false"
if: ${{ !inputs.dry_run && inputs.other }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}