CI: node workflow

This commit is contained in:
Aravinth Manivannan 2021-03-09 19:09:12 +05:30
parent 756ea0a186
commit 2327e55db5
Signed by untrusted user: realaravinth
GPG key ID: AD9F0F08E855ED88

View file

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