Skip to content

Commit

Permalink
Fix condition for executing step getting upstream builds
Browse files Browse the repository at this point in the history
We were using wrong input to detemine if the `Get upstream packages versions`
step should be run. The `upstreamBuilds` is not boolean, we should have been
using `useUpstreamBuilds` instead.
  • Loading branch information
michalinacienciala committed Sep 30, 2022
1 parent 2fbc244 commit c99cf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
run: yarn install --frozen-lockfile

- name: Get upstream packages versions
if: inputs.upstreamBuilds == true
if: inputs.useUpstreamBuilds == true
uses: keep-network/ci/actions/upstream-builds-query@v2
id: upstream-builds-query
with:
Expand Down

0 comments on commit c99cf07

Please sign in to comment.