2023-03-26 11:23:40 +00:00
|
|
|
name: Deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-05-09 12:50:53 +00:00
|
|
|
- name: Fetch repo
|
2023-05-10 12:38:05 +00:00
|
|
|
uses: actions/checkout@v3
|
2023-05-09 12:50:53 +00:00
|
|
|
with:
|
|
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
2023-05-09 14:34:37 +00:00
|
|
|
fetch-depth: 0
|
2023-03-26 11:23:40 +00:00
|
|
|
|
2023-05-09 12:50:53 +00:00
|
|
|
- name: Setup Hugo
|
2023-05-09 12:52:51 +00:00
|
|
|
uses: https://github.com/peaceiris/actions-hugo@v2
|
2023-03-26 11:23:40 +00:00
|
|
|
with:
|
2023-05-09 12:50:53 +00:00
|
|
|
hugo-version: '0.110.0'
|
|
|
|
|
|
|
|
- name: Build
|
2023-05-14 12:17:49 +00:00
|
|
|
run: hugo --minify
|
2023-05-09 12:42:43 +00:00
|
|
|
|
2023-05-09 12:45:05 +00:00
|
|
|
- name: Deploy
|
2023-05-10 12:57:59 +00:00
|
|
|
uses: https://github.com/burnett01/rsync-deployments@5.2.1
|
2023-05-10 12:56:55 +00:00
|
|
|
with:
|
|
|
|
switches: -avzr --delete
|
|
|
|
path: "public/"
|
|
|
|
remote_path: /srv/digitalstudium.com
|
|
|
|
remote_host: digitalstudium.com
|
|
|
|
remote_user: root
|
|
|
|
remote_key: ${{ secrets.SSH_PRIVATE_KEY }}
|