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 90b36c0 commit cf3d149Copy full SHA for cf3d149
.github/workflows/tangled-mirror.yml
@@ -31,9 +31,14 @@ jobs:
31
echo $TANGLED_SSH_KEY | base64 --decode > "$RUNNER_TEMP/ssh.key"
32
chmod 600 "$RUNNER_TEMP/ssh.key"
33
34
- - name: Push Repo to Mirror
+ - name: Setup SSH known_hosts
35
run: |
36
+ mkdir -p ~/.ssh
37
ssh-keyscan -t rsa tangled.sh >> ~/.ssh/known_hosts
38
+ chmod -R 600 ~/.ssh
39
+
40
+ - name: Push Repo to Mirror
41
+ run: |
42
eval `ssh-agent`
43
ssh-add "$RUNNER_TEMP/ssh.key"
44
git push --mirror --force tangled
0 commit comments