mcpbridge新增vport元素,以修复服务后端端口不一致导致的兼容性问题 || =mcpbridge added a vport element to fix compatibility issues caused by inconsistent ports in the service backend #571
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: "Helm Docs" | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| paths: | |
| - 'helm/**' | |
| - '!helm/higress/README.zh.md' | |
| workflow_dispatch: ~ | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'helm/**' | |
| - '!helm/higress/README.zh.md' | |
| jobs: | |
| helm: | |
| name: Helm Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.22.9' | |
| - name: Run helm-docs | |
| run: | | |
| GOBIN=$PWD GO111MODULE=on go install github.com/norwoodj/helm-docs/cmd/[email protected] | |
| ./helm-docs -c ${GITHUB_WORKSPACE}/helm/higress -f ../core/values.yaml | |
| DIFF=$(git diff ${GITHUB_WORKSPACE}/helm/higress/README.md) | |
| if [ ! -z "$DIFF" ]; then | |
| echo "Please use helm-docs in your clone, of your fork, of the project, and commit a updated README.md for the chart." | |
| fi | |
| git diff --exit-code | |
| rm -f ./helm-docs |