atmo.rsvp
1
fork

Configure Feed

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

add tangled mirror

Florian ec99815a 6a5ed10f

+37
+37
.github/workflows/mirror.yml
··· 1 + name: mirror 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + tags: 8 + - '*' 9 + 10 + permissions: 11 + contents: read 12 + 13 + jobs: 14 + mirror: 15 + name: 🕸️ Mirror to Tangled 16 + if: ${{ github.repository == 'flo-bit/atmo-events' }} 17 + runs-on: ubuntu-24.04-arm 18 + 19 + steps: 20 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 21 + with: 22 + fetch-depth: 0 23 + 24 + - name: 🔑 Configure SSH 25 + env: 26 + TANGLED_SSH_KEY: ${{ secrets.TANGLED_SSH_KEY }} 27 + run: | 28 + mkdir -p ~/.ssh 29 + echo "$TANGLED_SSH_KEY" > ~/.ssh/id_ed25519 30 + chmod 600 ~/.ssh/id_ed25519 31 + ssh-keyscan -t ed25519 tangled.org >> ~/.ssh/known_hosts 2>/dev/null 32 + 33 + - name: ⬆︎ Push to Tangled 34 + run: | 35 + git remote add tangled git@tangled.org:flo-bit.dev/atmo-events 36 + git push tangled main --force 37 + git push tangled --tags --force