From cc324e3f82628ae3d2237a363e76c35229e1646d Mon Sep 17 00:00:00 2001 From: Fatih Acar Date: Thu, 26 Sep 2024 16:03:41 +0200 Subject: [PATCH] fix(ci): publish checkbox is reversed Signed-off-by: Fatih Acar --- .github/workflows/publish-dev-docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-dev-docker-image.yml b/.github/workflows/publish-dev-docker-image.yml index 1fc1eb7fe1..4929f771c9 100644 --- a/.github/workflows/publish-dev-docker-image.yml +++ b/.github/workflows/publish-dev-docker-image.yml @@ -8,7 +8,7 @@ on: publish: type: boolean description: Publish the image - default: true + default: false required: true commit: type: string @@ -68,7 +68,7 @@ jobs: needs: meta_data secrets: inherit with: - publish: ${{ inputs.publish == '' && true }} + publish: ${{ inputs.publish }} version: dev-${{ needs.meta_data.outputs.short_ref }} ref: ${{ needs.meta_data.outputs.ref }} tags: ${{needs.meta_data.outputs.tags}}