From 8b052052474264fd7d179eba03bb1dfeda864ce0 Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Mon, 8 May 2023 11:39:46 +0100 Subject: [PATCH] fix build error --- .github/workflows/docker-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index bf1ccd4..ccb357d 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -55,7 +55,7 @@ jobs: - name: Build and push release uses: docker/build-push-action@v4 - if: startsWith(github.ref, 'refs/tags/') && matrix.config.tag == "" + if: startsWith(github.ref, 'refs/tags/') && matrix.config.tag == '' with: push: true tags: ghcr.io/ravenscroftj/turbopilot:${{ github.ref_name }}, ghcr.io/ravenscroftj/turbopilot:latest @@ -65,7 +65,7 @@ jobs: - name: Build and push release (CUDA) uses: docker/build-push-action@v4 - if: startsWith(github.ref, 'refs/tags/') && matrix.config.tag != "" + if: startsWith(github.ref, 'refs/tags/') && matrix.config.tag != '' with: push: true tags: ghcr.io/ravenscroftj/turbopilot:${{ github.ref_name }}