feat: add shared accessible toggle component #160
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tangled | |
| on: | |
| push: | |
| jobs: | |
| sync: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v4.1.7 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: sync tangled | |
| env: | |
| TANGLED_SSH_KEY: ${{ secrets.TANGLED_SSH_KEY }} | |
| run: | | |
| set -euo pipefail | |
| # Turn off strict SSH key checking | |
| mkdir -p ~/.ssh | |
| echo "Host * | |
| StrictHostKeyChecking no | |
| UserKnownHostsFile=/dev/null" > ~/.ssh/config | |
| # Write SSH key to disk | |
| echo "$TANGLED_SSH_KEY" > ~/.ssh/tangled_key | |
| chmod 600 ~/.ssh/tangled_key | |
| # Configure SSH to use the key for tangled.org | |
| echo "Host tangled.org | |
| IdentityFile ~/.ssh/tangled_key" >> ~/.ssh/config | |
| chmod 600 ~/.ssh/config | |
| git remote add tangled git@tangled.org:sprk.so/client | |
| git push -f --all tangled | |
| git push -f --tags tangled |