Skip to content

Update dependency go to v1.23.4 (#180) #125

Update dependency go to v1.23.4 (#180)

Update dependency go to v1.23.4 (#180) #125

Workflow file for this run

name: Docs
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.133.0'
extended: true
- name: Build docs
run: make docs
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/public
deploy:
needs: build
name: Deploy to GitHub Pages
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4