Skip to content

Commit

Permalink
Merge updates to master
Browse files Browse the repository at this point in the history
  • Loading branch information
KB1RD committed Jun 30, 2020
2 parents e6ec737 + 96f7524 commit 1f3c5de
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/genpkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Node.js Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: yarn run build
- run: yarn run test
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
18 changes: 18 additions & 0 deletions .github/workflows/ghpages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy TypeDoc to GitHub Pages

on:
release:
types: [created]

jobs:
typedoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: yarn install
- run: yarn run build:docs
- uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: .jsdoc

0 comments on commit 1f3c5de

Please sign in to comment.