Cloud Build: Bump gcb-docker-gcloud to v20240718-5ef92b5c36. (#12113)
#2004
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| changes: | |
| permissions: | |
| contents: read # for dorny/paths-filter to fetch a list of changed files | |
| pull-requests: read # for dorny/paths-filter to read pull requests | |
| runs-on: ubuntu-latest | |
| if: | | |
| (github.repository == 'kubernetes/ingress-nginx') | |
| outputs: | |
| docs: ${{ steps.filter.outputs.docs }} | |
| charts: ${{ steps.filter.outputs.charts }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
| - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
| id: filter | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| filters: | | |
| docs: | |
| - 'docs/**/*' | |
| docs: | |
| name: Update | |
| runs-on: ubuntu-latest | |
| needs: | |
| - changes | |
| if: | | |
| (github.repository == 'kubernetes/ingress-nginx') && | |
| (needs.changes.outputs.docs == 'true') | |
| permissions: | |
| contents: write # needed to write releases | |
| steps: | |
| - name: Checkout master | |
| uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
| - name: Deploy | |
| uses: ./.github/actions/mkdocs | |
| env: | |
| PERSONAL_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |