From b34f6aa6c53afca2c172d68167b845cb053fd7c4 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Mon, 12 Jan 2026 18:59:29 +0100 Subject: [PATCH] fix: eval try fix --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5a133f..d97f94a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,10 +11,9 @@ jobs: - name: Nix build run: nix build --extra-experimental-features "flakes nix-command" . - name: Setup skopeo - run: | - curl -o /etc/containers/policy.json --create-dirs https://raw.githubusercontent.com/containers/skopeo/refs/heads/main/default-policy.json + run: curl -o /etc/containers/policy.json --create-dirs https://raw.githubusercontent.com/containers/skopeo/refs/heads/main/default-policy.json - name: Push Image run: skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" docker-archive://$(realpath result) docker://git.tami.moe/tamipes/nix env: USERNAME: tamipes - UPLOAD_TOKEN: {{ secrets.UPLOAD_TOKEN }} + UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }}