Skip to content

Commit

Permalink
infra: better conditional (#17197)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Feb 7, 2024
1 parent 4ae9173 commit f87acf0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ jobs:
working-directory: ${{ inputs.working-directory }}

- name: Get minimum versions
if: ${{ !startsWith(inputs.working-directory, 'libs/core') }}
working-directory: ${{ inputs.working-directory }}
id: min-version
run: |
Expand All @@ -192,7 +191,7 @@ jobs:
echo "min-versions=$min_versions"
- name: Run unit tests with minimum dependency versions
if: ${{ !startsWith(inputs.working-directory, 'libs/core') }}
if: ${{ steps.min-version.outputs.min-versions != '' }}
env:
MIN_VERSIONS: ${{ steps.min-version.outputs.min-versions }}
run: |
Expand Down

0 comments on commit f87acf0

Please sign in to comment.