hugo-json/.forgejo/workflows/deploy.yaml
brooke 136bc694b4
Some checks failed
Hugo / build (push) Failing after 3s
update
2024-06-16 16:48:35 -04:00

27 lines
792 B
YAML

name: Hugo
on:
push:
branches:
- main
jobs:
build:
runs-on: hugo-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- name: Copy exampleSite Files
run: mkdir themes/hugo-maintenance && cp -v ./* !themes/hugo-maintenance && cp -v /themes/hugo-maintenance/exampleSite/hugo.yaml .
- name: Run build task
run: hugo --minify
- name: Deploy to Server
uses: https://git.myco.systems/mirrors/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-rlgoDzvc -i --delete"
SOURCE: "public/"
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
TARGET: ${{ secrets.REMOTE_TARGET }}