selectelv2: fix zone detection #33
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |