55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
|
name: publish
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
SSH_PRIVATE_KEY: ${{ secrets.PUBLISHER_PRIVATE_KEY }}
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
with:
|
||
|
submodules: recursive
|
||
|
fetch-depth: 0 # all history for all branches and tags\
|
||
|
|
||
|
- uses: actions/cache@v3
|
||
|
id: cache
|
||
|
with:
|
||
|
path: |
|
||
|
~/.cache/go-build
|
||
|
~/go
|
||
|
key: ${{ runner.os }}-go-
|
||
|
|
||
|
- uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: '>=1.21.0'
|
||
|
|
||
|
- name: Install Hugo
|
||
|
run: |
|
||
|
go install -tags extended github.com/gohugoio/hugo@latest
|
||
|
|
||
|
- uses: actions/cache@v3
|
||
|
with:
|
||
|
path: |
|
||
|
~/.cache/go-build
|
||
|
~/go
|
||
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||
|
restore-keys: |
|
||
|
${{ runner.os }}-go-
|
||
|
|
||
|
- name: Build
|
||
|
run: |
|
||
|
hugo --minify
|
||
|
|
||
|
- name: Deploy
|
||
|
run: |
|
||
|
eval $(ssh-agent -s)
|
||
|
echo "$SSH_PRIVATE_KEY" | ssh-add -
|
||
|
apt update && apt install -y rsync
|
||
|
mkdir ~/.ssh
|
||
|
ssh-keyscan your-host.com > ~/.ssh/known_hosts
|
||
|
rsync -atv --progress ./public/ your-user@your-host.com:/home/your-user/your-content-directory/public
|