Skip to content

fix: enable kubelet HTTP API with proper 501 responses for unsupporte… #77

fix: enable kubelet HTTP API with proper 501 responses for unsupporte…

fix: enable kubelet HTTP API with proper 501 responses for unsupporte… #77

Workflow file for this run

# Copyright 2026 Cisco Systems, Inc.

Check failure on line 1 in .github/workflows/deploy-website.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-website.yml

Invalid workflow file

(Line: 30, Col: 7): Unexpected value 'false'
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Deploy Website to GitHub Pages
on:
push:
branches:
- main
- develop
paths:
- 'docs/website/**'
workflow_dispatch:
permissions:
contents: write
jobs:
if: false
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: docs/website/package-lock.json
- name: Install dependencies
working-directory: docs/website
run: npm ci
- name: Build static site
working-directory: docs/website
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/website/out
publish_branch: gh-pages
force_orphan: true