From b3915337329c83041f82ef5b24cbe1a63d6a11dd Mon Sep 17 00:00:00 2001 From: David Eadie Date: Fri, 11 Oct 2024 22:26:21 +0100 Subject: [PATCH] Try using equals for checks --- .github/workflows/hub-main.yml | 2 ++ .github/workflows/hub-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hub-main.yml b/.github/workflows/hub-main.yml index faf18558..fec9ebd0 100644 --- a/.github/workflows/hub-main.yml +++ b/.github/workflows/hub-main.yml @@ -9,8 +9,10 @@ jobs: build: name: Build uses: ./.github/workflows/hub-build.yml + secrets: inherit release: name: Release needs: build uses: ./.github/workflows/hub-release.yml + secrets: inherit diff --git a/.github/workflows/hub-release.yml b/.github/workflows/hub-release.yml index 4e9fcd1c..3a5f6ff1 100644 --- a/.github/workflows/hub-release.yml +++ b/.github/workflows/hub-release.yml @@ -9,8 +9,8 @@ jobs: name: Detect Changes runs-on: ubuntu-latest outputs: - gateway: ${{ steps.filter.outputs.gateway || steps.filter.outputs.common }} - replay-processor: ${{ steps.filter.outputs.replay-processor || steps.filter.outputs.common }} + gateway: ${{ steps.filter.outputs.gateway == 'true' || steps.filter.outputs.common == 'true' }} + replay-processor: ${{ steps.filter.outputs.replay-processor == 'true' || steps.filter.outputs.common == 'true' }} steps: - name: Checkout uses: actions/checkout@v4