Skip to content

Merge pull request #27 from embik/add-owners #58

Merge pull request #27 from embik/add-owners

Merge pull request #27 from embik/add-owners #58

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
# Build Job
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: true # Fetch flowbite-icons
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.118.2"
extended: true
# install npm dependencies
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm ci
- name: Build
run: hugo --minify
- name: Upload build artifact
uses: actions/upload-pages-artifact@v1
with:
path: public/
# Deployment Job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
needs: build
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1