+5
-2
.tangled/workflows/mirror.yml
+5
-2
.tangled/workflows/mirror.yml
···
12
- name: "Mirror Aethel upstream into this repository"
13
command: |
14
rm -rf upstream-mirror
15
-
GIT_ASKPASS=true \
16
-
git clone --mirror https://github.com/Aethel-Labs/aethel.git upstream-mirror
17
cd upstream-mirror
18
git remote set-url --push origin "$GIT_REMOTE_URL"
19
git push --mirror
···
12
- name: "Mirror Aethel upstream into this repository"
13
command: |
14
rm -rf upstream-mirror
15
+
16
+
git clone --mirror \
17
+
https://${GITHUB_TOKEN}@github.com/Aethel-Labs/aethel.git \
18
+
upstream-mirror
19
+
20
cd upstream-mirror
21
git remote set-url --push origin "$GIT_REMOTE_URL"
22
git push --mirror