We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5391d8 commit 3e41e7bCopy full SHA for 3e41e7b
.github/workflows/tangled-mirror.yml
@@ -23,14 +23,17 @@ jobs:
23
- name: Checkout Repo
24
run: git clone --mirror ${{ github.repositoryUrl }}
25
26
+ - name: Add Tangled Remote
27
+ run: git remote add tangled $TANGLED_REPO_URL
28
+
29
- name: Decode SSH key
30
run: echo $TANGLED_SSH_KEY | base64 --decode "$RUNNER_TEMP/ssh.key"
31
32
- name: Push Repo to Mirror
33
run: |
34
eval `ssh-agent`
35
ssh-add "$RUNNER_TEMP/ssh.key"
- git push --all --force --mirror $TANGLED_REPO_URL
36
+ git push --mirror --force tangled
37
38
- name: Cleanup
39
run: rm "$RUNNER_TEMP/ssh.key"
0 commit comments