Skip to content

Commit

Permalink
Merge pull request #19 from honey32/develop
Browse files Browse the repository at this point in the history
main <- develop v0.0.1
  • Loading branch information
honey32 authored Jun 9, 2022
2 parents c8e5d8b + dd6bba7 commit 68683f0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/typedoc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# based on
# https://github.com/suin/github-actions-playground/blob/typedoc-and-github-pages/.github/workflows/typedoc.yaml

name: Deploy TypeDoc into GitHub Pages

on:
release:
types: [published]

jobs:
typedoc:
name: TypeDoc
runs-on: ubuntu-latest # Ubuntuの最新版を実行環境とする
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v2
# https://github.com/actions/setup-node
- uses: actions/setup-node@v1
with:
node-version: '12' # Node 12を使う
- name: Dependencies
run: npm ci
- name: TypeDoc
run: npm run docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist-doc
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-query-utils",
"version": "0.0.0",
"version": "0.0.1",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
Expand Down Expand Up @@ -76,4 +76,4 @@
"dependencies": {
"@swc/helpers": "^0.3.17"
}
}
}

0 comments on commit 68683f0

Please sign in to comment.