From 5f860a3969af8653ef373875ff866e121f820d3d Mon Sep 17 00:00:00 2001 From: Daniel Mizsak <62774880+daniel-mizsak@users.noreply.github.com> Date: Sat, 21 Sep 2024 22:21:00 +0200 Subject: [PATCH 1/2] Fix upper case image name error --- .github/workflows/ghcr.yml | 2 +- compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 5a17286..595bc37 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -28,4 +28,4 @@ with: context: docker/ push: true - tags: ghcr.io/PythonVilag/pythonvilag-website:latest + tags: ghcr.io/pythonvilag/pythonvilag-website:latest diff --git a/compose.yml b/compose.yml index ac7daed..d28ec4a 100644 --- a/compose.yml +++ b/compose.yml @@ -1,7 +1,7 @@ --- services: pythonvilag-website: - image: ghcr.io/PythonVilag/pythonvilag-website:latest + image: ghcr.io/pythonvilag/pythonvilag-website:latest container_name: pythonvilag-website hostname: pythonvilag-website ports: From 406d33154ab164bd7d0792021d0c33d8870d320e Mon Sep 17 00:00:00 2001 From: Daniel Mizsak <62774880+daniel-mizsak@users.noreply.github.com> Date: Sat, 21 Sep 2024 22:22:40 +0200 Subject: [PATCH 2/2] Remove build context --- .github/workflows/ghcr.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 595bc37..8af9e03 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -26,6 +26,5 @@ - name: Build and push image. uses: docker/build-push-action@v6 with: - context: docker/ push: true tags: ghcr.io/pythonvilag/pythonvilag-website:latest