1
0
Fork 0
digitalstudium.com/.gitea/workflows/deploy.yaml

36 lines
855 B
YAML
Raw Normal View History

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
uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
2023-03-26 11:23:40 +00:00
2023-05-09 12:50:53 +00:00
- name: Setup Hugo
uses: 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'
# extended: true
- name: Build
2023-05-09 12:42:43 +00:00
run: hugo --minify
2023-05-09 12:45:05 +00:00
- name: Deploy
2023-05-09 12:42:43 +00:00
uses: https://github.com/easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-rlgoDzvc -i --delete"
SOURCE: "public/"
REMOTE_HOST: digitalstudium.com
REMOTE_USER: root
2023-05-09 12:45:05 +00:00
TARGET: /srv/digitalstudium.com