From c99cf07b1ac4f32bc1983fe0fddbb533d6e11715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michalina=20Ciencia=C5=82a?= Date: Fri, 30 Sep 2022 15:56:59 +0200 Subject: [PATCH] Fix condition for executing step getting upstream builds 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. --- .github/workflows/reusable-build-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-build-and-publish.yml b/.github/workflows/reusable-build-and-publish.yml index f65425bf4..d8b896cf4 100644 --- a/.github/workflows/reusable-build-and-publish.yml +++ b/.github/workflows/reusable-build-and-publish.yml @@ -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: