hugo-json/.forgejo/workflows/deploy.yaml

29 lines
839 B
YAML
Raw Normal View History

2024-06-16 16:45:23 -04:00
name: Hugo
on:
push:
branches:
- main
jobs:
build:
runs-on: hugo-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
2024-06-16 16:45:23 -04:00
with:
submodules: "true"
path: "${{ github.workspace }}/themes"
- name: Copy example config
run: cp ${{ github.workspace }}/themes/hugo-maintenance/exampleSite/hugo.yaml ${{ github.workspace }}
2024-06-16 16:45:23 -04:00
- 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 }}