Skip to content

Commit

Permalink
add gh pages deploy to ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lightclient committed Jun 14, 2022
1 parent 985c936 commit c175847
Show file tree
Hide file tree
Showing 5 changed files with 34,579 additions and 207 deletions.
35 changes: 31 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:
branches:
- main

jobs:
build-and-deploy:
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
Expand All @@ -22,10 +24,35 @@ jobs:
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Deploy to branch
- 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: '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 }}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
node_modules/
**/node_modules
**/.cache
build/
openrpc.json
refs-openrpc.json
data.json
Expand Down
11 changes: 11 additions & 0 deletions open-rpc-generator-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"openrpcDocument": "openrpc.json",
"outDir": "build",
"components": [
{
"type": "docs",
"name": "execution-apis",
"language": "gatsby"
}
]
}
Loading

0 comments on commit c175847

Please sign in to comment.