task: deploy gh-pages

This commit is contained in:
Sören Weber 2021-10-17 00:44:34 +02:00
parent d339ad464f
commit d3e97e1ecd
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589

33
.github/workflows/deploy-gh-pages.yaml vendored Normal file
View file

@ -0,0 +1,33 @@
name: Deploy GitHub Pages
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Checkout Site
uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
# extended: true
- name: Build Site
run: hugo --minify --source exampleSite
- name: Deploy Site
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public