Skip to content

Commit

Permalink
ci: generate playground from apidoc definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Apr 18, 2023
1 parent 1711492 commit 9c1a4b4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/playground.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Playground

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Installing dependencies
run: npm install
- name: Generating docs
run: npm run build:apidoc

- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs

0 comments on commit 9c1a4b4

Please sign in to comment.