this repo has no description
1name: Mirror to tangled
2
3on:
4 push:
5 branches:
6 - main
7
8jobs:
9 mirror:
10 runs-on: ubuntu-latest
11
12 steps:
13 - name: Checkout source repo
14 uses: actions/checkout@v3
15 with:
16 fetch-depth: 0
17
18 - name: Set up SSH key
19 run: |
20 mkdir -p ~/.ssh
21 echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
22 chmod 600 ~/.ssh/id_ed25519
23 ssh-keyscan -H tangled.sh >> ~/.ssh/known_hosts
24 shell: bash
25
26 - name: Mirror
27 run: |
28 git remote add tangled git@tangled.sh:rockorager.dev/libvaxis
29 git push --mirror tangled