chore(deps): Upgrade CEL (#2412) #12
This file contains 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: Publish Documentation | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'docs/**' | |
branches: | |
- main | |
- 'v*' | |
jobs: | |
publishDocs: | |
name: Publish Documentation | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: 0 | |
lfs: true | |
- name: Generate docs | |
uses: ./.github/actions/antora-docs | |
- name: Publish to Netlify | |
uses: ./.github/actions/publish-docs | |
with: | |
auth_token: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
site_id: ${{ secrets.NETLIFY_SITE_ID }} | |