2023-03-26 11:23:40 +00:00
|
|
|
name: Deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-03-26 13:25:01 +00:00
|
|
|
- name: Fetch repo
|
|
|
|
uses: actions/checkout@v3
|
2023-03-26 11:23:40 +00:00
|
|
|
with:
|
|
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
|
|
|
|
- name: Setup Hugo
|
2023-03-26 11:42:50 +00:00
|
|
|
uses: https://github.com/peaceiris/actions-hugo@v2.6.0
|
2023-03-26 11:23:40 +00:00
|
|
|
with:
|
|
|
|
hugo-version: "0.110.0"
|
|
|
|
extended: true
|
|
|
|
|
2023-05-09 12:42:43 +00:00
|
|
|
- name: Build website
|
|
|
|
run: hugo --minify
|
|
|
|
|
|
|
|
- name: Deploy to Server
|
|
|
|
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
|
|
|
|
TARGET: /srv/digitalstudium.com
|