[API Shield] Update sidebar titles (#16958) #43
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
on: | |
push: | |
branches: | |
- production | |
jobs: | |
publish: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
name: Publish to Cloudflare Pages (Production) | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: npm | |
- run: npm ci | |
- uses: actions/cache/restore@v4 | |
with: | |
path: | | |
node_modules/.astro/_astro | |
node_modules/.astro/assets | |
key: static | |
- run: npx astro build | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
- run: npx wrangler pages deploy --project-name cloudflare-docs dist | |
name: Deploy to Cloudflare Pages | |
env: | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
- uses: actions/cache/save@v4 | |
if: always() | |
with: | |
path: | | |
node_modules/.astro/_astro | |
node_modules/.astro/assets | |
key: static |