This repository has been archived on 2024-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
kekskurse.de-old2/.forgejo/workflows/deplo.yml
kekskurse 248d394219
All checks were successful
GitHub Pages / deploy (push) Successful in 14s
remove test headline
2023-07-19 15:01:54 +02:00

37 lines
No EOL
955 B
YAML

name: GitHub Pages
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: docker
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: https://github.com/peaceiris/actions-hugo@v2
with:
hugo-version: '0.112.0'
# extended: true
- name: Build
run: hugo --minify
- name: copy file via ssh password
uses: https://github.com/appleboy/scp-action@v0.1.4
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
source: "public/*"
target: "/var/www/kekskurse.de/"
strip_components: 1