Skip to content

build(deps): bump golangci/golangci-lint-action from 4 to 5 #48

build(deps): bump golangci/golangci-lint-action from 4 to 5

build(deps): bump golangci/golangci-lint-action from 4 to 5 #48

Workflow file for this run

name: Website Build
on:
push:
branches:
- main # Set a branch to deploy
paths:
- .github/workflows/**
- website/**
pull_request:
paths:
- .github/workflows/**
- website/**
jobs:
deploy:
timeout-minutes: 5
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
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: 'latest'
extended: true
- name: Build
run: hugo --minify
working-directory: website
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/public