Skip to content

selectelv2: fix zone detection #33

selectelv2: fix zone detection

selectelv2: fix zone detection #33

Workflow file for this run

name: Build Documentation
on:
pull_request:
branches:
- master
- main
permissions: {}
jobs:
build:
name: Build Documentation
runs-on: ubuntu-latest
env:
GO_VERSION: stable
HUGO_VERSION: 0.157.0
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Generate and Check generated elements
run: |
make generate
git diff --exit-code
- name: Install Hugo
run: |
wget -O /tmp/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-amd64.deb
sudo dpkg -i /tmp/hugo.deb
- name: Build Documentation
run: make docs-build