From b0e599c193b3172ada8039f01ee89f28427d1642 Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Wed, 8 Oct 2025 19:10:09 +0000 Subject: [PATCH] ci(*): correct single-repo pushes Change-Id: xzwttpkxlsvpyklyyoxrwmpuvkvkzvsl When cloning, we don't have origin/refs/heads/..., instead branches are directly under origin/... --- .tangled/workflows/github.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tangled/workflows/github.yml b/.tangled/workflows/github.yml index 02703e42..1be3fcf4 100644 --- a/.tangled/workflows/github.yml +++ b/.tangled/workflows/github.yml @@ -47,7 +47,7 @@ steps: cd packetmix git remote add github git@github.com:FreshlyBakedCake/PacketMix.git git fetch github - git push github origin/refs/heads/release:refs/heads/release + git push github origin/release:refs/heads/release - name: Write SSH Key command: | echo "$KEY_SSH_GITHUB_SPRINKLES" > /tmp/key-ssh-github @@ -59,4 +59,4 @@ steps: cd packetmix git remote add github git@github.com:FreshlyBakedCake/Sprinkles.git git fetch github - git push github origin/refs/heads/release:refs/heads/release + git push github origin/release:refs/heads/release -- 2.43.0