[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: tangled sync

+37
+37
.github/workflows/tangled.yaml
··· 1 + name: tangled 2 + 3 + on: 4 + push: 5 + 6 + jobs: 7 + sync: 8 + runs-on: blacksmith-4vcpu-ubuntu-2404 9 + steps: 10 + - uses: actions/checkout@v4.1.7 11 + with: 12 + fetch-depth: 0 13 + ref: ${{ github.event.pull_request.head.sha }} 14 + - name: sync tangled 15 + env: 16 + TANGLED_SSH_KEY: ${{ secrets.TANGLED_SSH_KEY }} 17 + run: | 18 + set -euo pipefail 19 + # Turn off strict SSH key checking 20 + mkdir -p ~/.ssh 21 + echo "Host * 22 + StrictHostKeyChecking no 23 + UserKnownHostsFile=/dev/null" > ~/.ssh/config 24 + 25 + # Write SSH key to disk 26 + echo "$TANGLED_SSH_KEY" > ~/.ssh/tangled_key 27 + chmod 600 ~/.ssh/tangled_key 28 + 29 + # Configure SSH to use the key for tangled.sh 30 + echo "Host tangled.sh 31 + IdentityFile ~/.ssh/tangled_key" >> ~/.ssh/config 32 + 33 + chmod 600 ~/.ssh/config 34 + 35 + git remote add tangled git@tangled.sh:sprk.so/server 36 + git push -f --all tangled 37 + git push -f --tags tangled