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