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 cbf25de commit 26e2281Copy full SHA for 26e2281
1 file changed
.github/workflows/mirror-to-tangled.yml
@@ -9,15 +9,18 @@ jobs:
9
mirror:
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Checkout repo
13
- uses: actions/checkout@v4
+ - name: Checkout
+ uses: actions/checkout@v5
14
+
15
+ - name: Start SSH agent and add key
16
+ uses: webfactory/ssh-agent@v0.9.1
17
+ with:
18
+ ssh-private-key: ${{ secrets.TANGLED_SSH_KEY }}
19
20
+ - name: Trust Tangled host key
21
+ run: ssh-keyscan tangled.sh >> ~/.ssh/known_hosts
22
23
- name: Push to Tangled
- env:
- SSH_KEY: ${{ secrets.TANGLED_SSH_KEY }}
24
run: |
- mkdir -p ~/.ssh
- echo "$SSH_KEY" > ~/.ssh/id_ed25519
- chmod 600 ~/.ssh/id_ed25519
25
git remote add tangled git@tangled.sh:jaydip.me/moocup
26
git push tangled main
0 commit comments