Skip to content

chore(deps): bump the github-actions group with 7 updates (#64) #15

chore(deps): bump the github-actions group with 7 updates (#64)

chore(deps): bump the github-actions group with 7 updates (#64) #15

Workflow file for this run

name: Pages
on:
push:
branches:
- master
- main
paths:
- "website/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Pages
id: pages
uses: actions/configure-pages@v6
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: "0.123.8"
extended: false
- name: Build site
working-directory: website
run: hugo --destination public --minify
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: website/public
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5