CI: node workflow

This commit is contained in:
Aravinth Manivannan 2021-03-09 19:09:12 +05:30
parent 756ea0a186
commit 2327e55db5
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 32 additions and 17 deletions

View File

@ -6,25 +6,40 @@ on:
- master # Set a branch to deploy
jobs:
deploy:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.75.1'
# extended: true
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 15
- name: Build
run: hugo -D
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
- 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