chore(operator): Fix file not found error during website build #27063
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: Verify release workflow updates | |
| on: [pull_request] | |
| jobs: | |
| check-release-changes: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: "read" | |
| id-token: "write" | |
| pull-requests: "write" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: setup go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24.8" | |
| - name: setup jsonnet | |
| run: | | |
| go install github.com/google/go-jsonnet/cmd/jsonnet@v0.20.0 | |
| go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@v0.5.1 | |
| - name: Check that the release workflows have been updated properly | |
| run: | | |
| make BUILD_IN_CONTAINER=false release-workflows-check |