Skip to content

Commit

Permalink
Try using equals for checks
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEadie committed Oct 11, 2024
1 parent 0fad5fd commit b391533
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/hub-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/hub-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b391533

Please sign in to comment.