From 8291d0afe0ce5ebb0e8d770dd6bae13fd28a72fb Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Sat, 4 Oct 2025 21:19:48 +0000 Subject: [PATCH] ci(*/github): add specific project mirrors Change-Id: tntukkyoxkllylnrpmzyotlkxmywltlp --- .tangled/workflows/github.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.tangled/workflows/github.yml b/.tangled/workflows/github.yml index 38f379d2..aba0a260 100644 --- a/.tangled/workflows/github.yml +++ b/.tangled/workflows/github.yml @@ -4,7 +4,7 @@ when: - event: ["push"] - branch: ["release"] + branch: ["release", "test"] engine: nixery @@ -30,9 +30,25 @@ steps: echo "Host github.com" >> /etc/ssh/ssh_config echo " User git" >> /etc/ssh/ssh_config echo " IdentityFile /tmp/key-ssh-github" >> /etc/ssh/ssh_config - - name: Push to GitHub + - name: Push * to GitHub command: | git remote add github git@github.com:FreshlyBakedCake/Patisserie.git git fetch --unshallow origin git fetch github git push github HEAD:refs/heads/release + - name: Push packetmix to GitHub + command: | + cd .. + git clone https://git.freshlybakedca.ke/patisserie.git:workspace=projects/packetmix.git + 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 + - name: Push sprinkles to GitHub + command: | + cd .. + git clone https://git.freshlybakedca.ke/patisserie.git:workspace=projects/sprinkles.git + 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 -- 2.43.0