From 3049a18141697b269e680b7dae8ffca35f77c891 Mon Sep 17 00:00:00 2001 From: Guillaume Falourd Date: Thu, 31 Aug 2023 13:22:13 -0300 Subject: [PATCH] update matrix-object workflow Signed-off-by: Guillaume Falourd --- .github/workflows/66-matrix-object.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/66-matrix-object.yaml b/.github/workflows/66-matrix-object.yaml index b33f1bad1f..7c6fe0370e 100644 --- a/.github/workflows/66-matrix-object.yaml +++ b/.github/workflows/66-matrix-object.yaml @@ -46,19 +46,19 @@ jobs: echo "type=$TYPE" >> $GITHUB_OUTPUT rm task.json - - if: steps.task.outputs.type = "IAC" + - if: steps.task.outputs.type == "IAC" uses: stack-spot/runtime-github-action-iac@v1 with: FEATURES_LEVEL_LOG: debug INPUT_PATH: ${{ steps.task.outputs.taskId }} - - if: steps.task.outputs.type = "DEPLOY" + - if: steps.task.outputs.type == "DEPLOY" uses: stack-spot/runtime-github-action-deploy@v1 with: FEATURES_LEVEL_LOG: debug INPUT_PATH: ${{ steps.task.outputs.taskId }} - - if: steps.task.outputs.type = "DESTROY" + - if: steps.task.outputs.type == "DESTROY" uses: stack-spot/runtime-github-action-destroy@v1 with: FEATURES_LEVEL_LOG: debug