From 32f5262b9338ad95940bfe22b780a90bc8446f54 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Mon, 18 Aug 2025 12:53:10 +0000 Subject: [PATCH] Update Gitea Container Registry URL in workflow configuration --- .gitea/workflows/docker-image.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.gitea/workflows/docker-image.yml b/.gitea/workflows/docker-image.yml index 25b94f0..dda76da 100644 --- a/.gitea/workflows/docker-image.yml +++ b/.gitea/workflows/docker-image.yml @@ -25,7 +25,7 @@ jobs: - name: Log in to Gitea Container Registry uses: docker/login-action@v3 with: - registry: ${{ env.REGISTRY_HOST }} + registry: gitea.purpleraft.com username: ${{ secrets.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_PASSWORD }} @@ -59,11 +59,3 @@ jobs: platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - - env: - # Example: registry.example.com or gitea.example.com - REGISTRY_HOST: ${{ secrets.REGISTRY_HOST }} - # Example: ryan (your user or org in Gitea) - REGISTRY_OWNER: ${{ secrets.REGISTRY_OWNER }} - # Example: noisedash (this repo name) - REGISTRY_REPO: ${{ secrets.REGISTRY_REPO }}