Skip to content

Bump actions/checkout from 4.1.2 to 4.1.4 #32

Bump actions/checkout from 4.1.2 to 4.1.4

Bump actions/checkout from 4.1.2 to 4.1.4 #32

Workflow file for this run

name: Website
on:
push:
branches:
- main
permissions: read-all
jobs:
publish:
name: Publish
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: go.mod
- name: Build
run: |
cd web
make build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@ec9c88baef04b842ca6f0a132fd61c762aa6c1b0 # v4.6.0
with:
branch: gh-pages
folder: web
single-commit: true