Files
www/.gitea/workflows/deploy.yaml
Adam 4b2a7fbd9f
Deploy ${{ gitea.repository }} / deploy (push) Failing after 2m14s
Migrate deploy to direct Tailscale SSH
Drops dependency on the ci/service-manager middleman. Runners tagged
tag:ci-runner now SSH directly to tag:service nodes via Tailscale SSH;
ACL gates access, no keys.
2026-04-19 23:15:40 -04:00

16 lines
411 B
YAML

name: Deploy ${{ gitea.repository }}
run-name: ${{ gitea.actor }} is deploying ${{ gitea.repository }}
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy via Tailscale SSH
run: |
ssh -o StrictHostKeyChecking=accept-new -o BatchMode=yes \
root@100.106.10.22 \
'cd /root/repos/www && git pull && ./start.sh'