From efb5247cdfd69b225440e13a89fd11ac97467c28 Mon Sep 17 00:00:00 2001 From: shroominic <34897716+shroominic@users.noreply.github.com> Date: Sat, 9 Aug 2025 14:00:18 -0300 Subject: [PATCH 1/2] fix container.yml --- .github/workflows/container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index d7c8f1c9..74be0d09 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -26,7 +26,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Lowercase and set image tag - run: echo "IMAGE_TAG=ghcr.io/$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]'):latest" >> $GITHUB_ENV + run: echo "IMAGE_TAG=ghcr.io/proxy:latest" >> $GITHUB_ENV - name: Build and push Docker image uses: docker/build-push-action@v4 From 48b40e196bdbbed6802cadacafa92413dd6a000b Mon Sep 17 00:00:00 2001 From: Shroominic Date: Sun, 10 Aug 2025 13:48:44 -0300 Subject: [PATCH 2/2] add core tag, still maintain deprecated proxy tag --- .github/workflows/container.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 74be0d09..b3495f0f 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -25,13 +25,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Lowercase and set image tag - run: echo "IMAGE_TAG=ghcr.io/proxy:latest" >> $GITHUB_ENV - - name: Build and push Docker image uses: docker/build-push-action@v4 with: context: . push: true tags: | - ${{ env.IMAGE_TAG }} + ghcr.io/routstr/proxy:latest + ghcr.io/routstr/core:latest