From cc611551a87d024435d58fe83c26e6a2c2afa43b Mon Sep 17 00:00:00 2001 From: Tarrence van As Date: Tue, 14 May 2024 13:05:40 -0400 Subject: [PATCH] Fix devcontainer boolean expression --- .github/workflows/devcontainer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index 5b3f5b492b..08672eb7f1 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -64,7 +64,7 @@ jobs: - name: Build and push Docker image uses: docker/build-push-action@v2 with: - push: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')) + push: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'release' && startsWith(github.ref, 'refs/tags/')) }} file: .devcontainer/Dockerfile tags: ghcr.io/${{ github.repository }}-dev:latest,ghcr.io/${{ github.repository }}-dev:${{ env.DOCKER_TAG }} build-args: |