From ed6a66fbb09ce2fecefd10528ee470d9042ec679 Mon Sep 17 00:00:00 2001 From: John Parkhurst Date: Tue, 10 Jun 2025 17:40:54 -0400 Subject: [PATCH 1/4] Update web-deploy.yml --- .github/workflows/web-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index 007af53..c573cdf 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -35,7 +35,7 @@ jobs: file: Dockerfile platforms: linux/amd64 push: true - tags: user/app:latest + tags: ${{ secrets.DOCKERHUB_USER }}/shiftsync:latest_web - name: Deploy to Coolify run: | curl --request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' From 16bb0bf7ba0f16b253b5011ef083f378d4ccb30c Mon Sep 17 00:00:00 2001 From: John Parkhurst Date: Tue, 10 Jun 2025 17:42:51 -0400 Subject: [PATCH 2/4] Update web-deploy.yml --- .github/workflows/web-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index c573cdf..d2a28ab 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -26,6 +26,7 @@ jobs: - name: Login to Docker uses: docker/login-action@v3 with: + registry: docker.io username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build Image and Push to Registry From ebaf175172b35533b2b835c9bbba9b7485a7aabb Mon Sep 17 00:00:00 2001 From: John Parkhurst Date: Tue, 10 Jun 2025 19:18:39 -0400 Subject: [PATCH 3/4] Update web-deploy.yml --- .github/workflows/web-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index d2a28ab..e512d8f 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -33,7 +33,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - file: Dockerfile + file: ./web/Dockerfile platforms: linux/amd64 push: true tags: ${{ secrets.DOCKERHUB_USER }}/shiftsync:latest_web From 0776a8cc2e795f10caf80af0b59d025743d72592 Mon Sep 17 00:00:00 2001 From: John Parkhurst Date: Tue, 10 Jun 2025 19:27:51 -0400 Subject: [PATCH 4/4] Update web-deploy.yml --- .github/workflows/web-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index e512d8f..475b379 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -29,6 +29,8 @@ jobs: registry: docker.io username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Build Image and Push to Registry uses: docker/build-push-action@v6 with: