20 lines
390 B
YAML
20 lines
390 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
|
|
uses: appleboy/ssh-action@v1
|
|
with:
|
|
host: ${{ secrets.DEPLOY_HOST }}
|
|
username: deploy
|
|
key: ${{ secrets.DEPLOY_KEY }}
|
|
script: deploy-timothykim
|