From f3f50a45bba27571df42f58df9105841cc78a610 Mon Sep 17 00:00:00 2001 From: Pete Cornish Date: Tue, 11 Jun 2024 13:39:43 +0100 Subject: [PATCH] ci: work-around for /~https://github.com/actions/runner/issues/2206 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 354a1089a..e30107106 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: uses: ./.github/workflows/dist.yaml with: effective-branch: ${{ needs.setup.outputs.effective-branch }} - release: ${{ needs.setup.outputs.release }} + release: ${{ needs.setup.outputs.release == true }} secrets: inherit distroless: @@ -32,5 +32,5 @@ jobs: uses: ./.github/workflows/distroless.yaml with: effective-branch: ${{ needs.setup.outputs.effective-branch }} - release: ${{ needs.setup.outputs.release }} + release: ${{ needs.setup.outputs.release == true }} secrets: inherit