fix: rename and doc FOREST_IGNROE_DRAND env var (#5366) #411
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 Deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs-deploy.yml' | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
- '.github/workflows/docs-deploy.yml' | |
permissions: | |
contents: read | |
deployments: write | |
pull-requests: write | |
jobs: | |
docs-deploy: | |
name: Deploy to Cloudflare Pages | |
runs-on: ubuntu-24.04-arm | |
defaults: | |
run: | |
working-directory: ./docs | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
# See https://github.com/actions/setup-node/issues/1027 | |
# cache: yarn | |
- run: corepack enable | |
- run: yarn --immutable | |
- run: yarn run build | |
- name: Deploy | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_PAGES_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT_ID }} | |
command: pages deploy ./docs/build --project-name=forest-docs | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} |