Skip to content

Merge pull request #44 from ryunix/add-create-audio-query-from-preset #21

Merge pull request #44 from ryunix/add-create-audio-query-from-preset

Merge pull request #44 from ryunix/add-create-audio-query-from-preset #21

Workflow file for this run

name: Build document
on:
push:
branches:
- main
jobs:
build:
name: Build document for voicevox-client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install depend
run: yarn install --frozen-lockfile --save-dev
- name: Build docs
run: npx typedoc src/*.ts src/**/*.ts
- uses: actions/upload-pages-artifact@v1
with:
path: docs
publish:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1