mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
31 lines
618 B
YAML
31 lines
618 B
YAML
|
name: Build GH-Pages
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Git checkout
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
ref: exampleSite
|
||
|
|
||
|
- name: Update theme
|
||
|
run: git submodule update --init --recursive
|
||
|
|
||
|
- name: Setup hugo
|
||
|
uses: peaceiris/actions-hugo@v2
|
||
|
with:
|
||
|
hugo-version: 'latest'
|
||
|
|
||
|
- name: Build
|
||
|
run: hugo --gc --verbose --minify
|
||
|
|
||
|
- name: Deploy
|
||
|
uses: peaceiris/actions-gh-pages@v3
|
||
|
with:
|
||
|
github_token: ${{ secrets.TOKEN }}
|
||
|
publish_dir: ./public
|