From ec6998832bf98e5e1f0abb57055936f869a45d88 Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Thu, 11 Jun 2026 22:56:25 -0700 Subject: [PATCH] Wip --- .gitea/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 41cd218..c85bf88 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -26,9 +26,10 @@ jobs: git checkout "${{ github.sha }}" - name: Log in to registry - run: | - echo "${{ secrets.FORGE_TOKEN }}" \ - | podman login "$REGISTRY" -u "${{ secrets.FORGE_USER }}" --password-stdin + env: + REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} + REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} + run: echo "$REGISTRY_PASSWORD" | podman login "$REGISTRY" -u "$REGISTRY_USERNAME" --password-stdin - name: Build and push run: |