From d708a527c887e38e08d917430558617ec0a5ec76 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Mon, 12 Jan 2026 20:19:14 +0100 Subject: [PATCH] fix: skopeo `nix shell` multiline fix --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a76f411..58e4289 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,8 +14,8 @@ jobs: 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: | - nix shell --extra-experimental-features "flakes nix-command" nixpkgs#skopeo -c sh -c - 'skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" docker-archive://$(realpath result) docker://git.tami.moe/tamipes/nix && + nix shell --extra-experimental-features "flakes nix-command" nixpkgs#skopeo -c sh -c \ + 'skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" docker-archive://$(realpath result) docker://git.tami.moe/tamipes/nix && \ skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" docker-archive://$(realpath result) docker://git.tami.moe/tamipes/nix:$(date --iso-8601)' env: USERNAME: tamipes