Skip to content

Build website

Build website #4069

Workflow file for this run

name: Build website
on:
push:
branches: [ master ]
schedule:
- cron: '0 */6 * * *'
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
name: Build
runs-on: ubuntu-20.04
env:
HUGO_VERSION: 0.119.0
steps:
- name: checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: apt update
run: sudo apt-get update
- name: Install libcurl
run: sudo apt-get install libcurl4-openssl-dev
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: build application
run: make run
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Build website (github-workflow)
file_pattern: content/pages/* public/*
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2