Skip to content

add contents write

add contents write #29

Workflow file for this run

name: Deploy specification
on:
push:
branches:
- main
env:
# this avoids node running out of memory while building
NODE_OPTIONS: --max_old_space_size=20480
jobs:
deploy-gh-pages:
permissions:
pages: write
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '22'
- run: npm ci
- run: npm run build
- run: npm run build:docs
- run: 'sed -i -e "s|Prefix: \"\"|Prefix: \"/execution-apis\"|g" build/docs/gatsby/gatsby-config.js'
- run: 'sed -i -e "s|/api|api|g" build/docs/gatsby/src/pages/index.tsx'
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: build/docs/gatsby/public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}