mirror of
https://github.com/fruworg/themu.git
synced 2024-11-16 07:07:16 +03:00
28 lines
535 B
YAML
28 lines
535 B
YAML
name: github pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- site
|
|
|
|
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: '0.58.3'
|
|
|
|
- name: Build
|
|
run: hugo --gc --minify --cleanDestinationDir
|
|
|
|
- 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
|