Added gitea actions for hugo
All checks were successful
Build and deploy Hugo website / build-and-deploy (push) Successful in 7s
All checks were successful
Build and deploy Hugo website / build-and-deploy (push) Successful in 7s
This commit is contained in:
27
.gitea/workflows/hugo-build-deploy.yaml
Normal file
27
.gitea/workflows/hugo-build-deploy.yaml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: Build and deploy Hugo website
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Hugo
|
||||||
|
uses: peaceiris/actions-hugo@v3
|
||||||
|
with:
|
||||||
|
hugo-version: '0.147.8'
|
||||||
|
extended: true
|
||||||
|
- name: Build
|
||||||
|
run: hugo
|
||||||
|
- name: Deploy
|
||||||
|
uses: XPH0816/webdav-deploy-action@v0.3
|
||||||
|
with:
|
||||||
|
url: https://webserver-deploy.joppeb.nl
|
||||||
|
username: ${{ secrets.WEBDAV_USER }}
|
||||||
|
password: ${{ secrets.WEBDAV_PASS }}
|
||||||
|
local: "./public"
|
||||||
|
remote: "/"
|
Reference in New Issue
Block a user