12 lines
245 B
YAML
12 lines
245 B
YAML
name: Deploy site
|
|
run-name: ${{ gitea.actor }} started deploying the site
|
|
on: [push]
|
|
|
|
jobs:
|
|
Deploy-Site:
|
|
runs-on: alpine-latest
|
|
steps:
|
|
- name: Pull latest site
|
|
run: |
|
|
doas -u notes git -C /home/notes/notes pull
|