34 lines
725 B
YAML
Raw Normal View History

2020-07-21 23:38:28 +05:30
name: Build GH-Pages
on:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
with:
ref: exampleSite
2020-07-25 12:07:01 +05:30
2020-07-23 03:25:32 +05:30
- name: Get Theme
run: git submodule update --init --recursive
2020-07-25 12:07:01 +05:30
2020-07-23 03:25:32 +05:30
- name: Update theme to Latest commit
2020-07-23 03:18:45 +05:30
run: git submodule update --remote --merge
2020-07-21 23:38:28 +05:30
- name: Setup hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
- name: Build
2020-07-25 12:07:01 +05:30
run: hugo --buildDrafts --gc --verbose --minify
2020-07-21 23:38:28 +05:30
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.TOKEN }}
publish_dir: ./public