Bump prettier from 3.2.5 to 3.3.2 (#22349) #2304
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: Docs | |
on: | |
# Deploy to production on master | |
push: | |
branches: | |
- master | |
# Deploy `master` on workflow dispatch. | |
workflow_dispatch: | |
# Only deploy the latest build artifact to GitHub Pages | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
deploy_docs: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
with: | |
# Keep this in sync with `verify-docker-image: build_docs` where we upload the artifact | |
artifact_name: docs |