From 352238f2c4bf5d7dffddbc96746b656f6d9224cf Mon Sep 17 00:00:00 2001 From: Marco Iorio Date: Tue, 20 Sep 2022 14:03:52 +0200 Subject: [PATCH] Github actions: fix build all --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 757c47e8a..142a7fc51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,7 +63,7 @@ jobs: # The optional images (i.e., user environments) are built only in case of version tags, # and when the /deploy-staging event is dispatched with the build-all flag [[ "${{ steps.version.outputs.version }}" != "" || \ - ("${{ github.event_name }}" == "repository_dispatch" && github.event.client_payload.slash_command.args.all == 'build-all') ]] && \ + ("${{ github.event_name }}" == "repository_dispatch" && "${{ github.event.client_payload.slash_command.args.all }}" == "build-all") ]] && \ echo "::set-output name=filter-optional-images::false" || \ echo "::set-output name=filter-optional-images::true"