Files
hantim-server/.gitea/workflows/deploy-timothykim.yml
T
timothykim 5dd2343d4a
Deploy timothykim.net / deploy (push) Failing after 3s
migrate to hantim org and consolidate deploy secret name
- Update all references from timothykim/ to hantim/ org
- Rename DEPLOY_KEY to DEPLOY_SSH_KEY everywhere
- Update README to reference org-level secrets
2026-03-15 21:46:31 -04:00

19 lines
465 B
YAML

name: Deploy timothykim.net
on:
push:
branches: [main]
paths:
- 'docker/timothykim.net/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy via SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/deploy_key
chmod 600 ~/.ssh/deploy_key
ssh -o StrictHostKeyChecking=accept-new -i ~/.ssh/deploy_key deploy@${{ secrets.DEPLOY_HOST }} deploy-timothykim.net