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 -p themes/hugo-maintenance && cp -rv layouts static archetypes assets 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 }}