Docs: Update README (#584) #240
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: 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-spec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 15 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '15' | |
- run: npm ci | |
- run: npm run build | |
- name: setup git config | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
- name: Deploy assembled spec | |
run: | | |
git checkout -b assembled-spec | |
git add -f openrpc.json | |
git add -f refs-openrpc.json | |
git commit -m "assemble openrpc.json" | |
git push -fu origin assembled-spec | |
deploy-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 15 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '15' | |
- run: npm ci | |
- run: npm run build | |
- run: npm run generate-clients | |
- 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' | |
- run: npm run build:docs | |
- name: setup git config | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
- name: Deploy to GitHub Pages | |
if: success() | |
uses: crazy-max/ghaction-github-pages@v3 | |
with: | |
target_branch: gh-pages | |
build_dir: build/docs/gatsby/public | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |