2021-03-09 18:56:02 +05:30
|
|
|
name: github pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-09 18:59:56 +05:30
|
|
|
- master # Set a branch to deploy
|
2021-03-09 18:56:02 +05:30
|
|
|
|
|
|
|
jobs:
|
2021-03-09 19:09:12 +05:30
|
|
|
build:
|
2021-03-09 18:56:02 +05:30
|
|
|
runs-on: ubuntu-18.04
|
2021-03-09 19:09:12 +05:30
|
|
|
|
2021-03-09 18:56:02 +05:30
|
|
|
steps:
|
2021-03-09 19:09:12 +05:30
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 15
|
|
|
|
|
|
|
|
- name: Install Hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
|
|
|
hugo-version: 'latest'
|
|
|
|
extended: true
|
|
|
|
|
|
|
|
- name: Check install Hugo
|
|
|
|
run: hugo version
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Delete temporary directories
|
|
|
|
run: npm run clean
|
|
|
|
|
|
|
|
- name: Build production website
|
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./public
|