From a94653aa6d50eccc2098049e20d2e58ba9da4e95 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 | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.tangled/workflows/github.yml b/.tangled/workflows/github.yml index 38f379d2..02703e42 100644 --- a/.tangled/workflows/github.yml +++ b/.tangled/workflows/github.yml @@ -30,9 +30,33 @@ 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: Write SSH Key + command: | + echo "$KEY_SSH_GITHUB_PACKETMIX" > /tmp/key-ssh-github + chmod 600 /tmp/key-ssh-github + - 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: Write SSH Key + command: | + echo "$KEY_SSH_GITHUB_SPRINKLES" > /tmp/key-ssh-github + chmod 600 /tmp/key-ssh-github + - 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