Create main.yml

This commit is contained in:
Andre Beging
2020-03-05 17:13:03 +01:00
committed by GitHub
parent e7b1ae7ed7
commit 875675786b

27
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: github pages
on:
push:
branches:
- master
jobs:
build-deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2.2.0
with:
hugo-version: 'latest'
- name: Build
run: hugo --gc --cleanDestinationDir --baseURL https://science-slam-siegen.de/ -v
- name: Deploy
uses: peaceiris/actions-gh-pages@v2.4.0
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./public