Skip to content

Commit

Permalink
fix test-regression condition
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed AbouZaid <[email protected]>
  • Loading branch information
aabouzaid committed Jun 12, 2024
1 parent dda1933 commit c7889f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
id: generate-chart-versions
uses: ./.github/actions/generate-chart-matrix
with:
charts-path: "charts/camunda-platform-8*"
charts-path: "charts/camunda-8*"

validation:
if: ${{ needs.init.outputs.matrix.version != '' }}
if: ${{ needs.init.outputs.matrix != '' }}
name: Validation - Camunda ${{ matrix.version }}
needs: init
strategy:
Expand All @@ -50,7 +50,7 @@ jobs:
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}"

unit:
if: ${{ needs.init.outputs.matrix.version != '' }}
if: ${{ needs.init.outputs.matrix != '' }}
name: Unit Test - Camunda ${{ matrix.version }}
needs: [init]
strategy:
Expand All @@ -64,7 +64,7 @@ jobs:
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}"

integration:
if: ${{ needs.init.outputs.matrix.version != '' }}
if: ${{ needs.init.outputs.matrix != '' }}
name: Integration Test - Camunda ${{ matrix.version }}
needs: [init, validation, unit]
strategy:
Expand Down

0 comments on commit c7889f0

Please sign in to comment.