43 lines
875 B
YAML
Raw Normal View History

2020-07-21 23:38:28 +05:30
name: Build GH-Pages
on:
push:
2020-09-24 12:18:18 +05:30
paths-ignore:
- 'images/**'
- 'LICENSE'
- 'README.md'
branches:
- master
- exampleSite
2020-07-21 23:38:28 +05:30
workflow_dispatch:
# manual run
2020-07-21 23:38:28 +05:30
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: '0.83.0'
2020-07-21 23:38:28 +05:30
- 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