Bump MangaDemon source version to 1.0.1 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
name: Bundle and Publish Sources | |
jobs: | |
build: | |
name: Bundle and Publish Sources | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm run bundle | |
- run: npx typedoc -out bundles/docs | |
continue-on-error: true | |
- name: Deploy | |
uses: s0/git-publish-subdir-action@master | |
env: | |
REPO: self | |
BRANCH: gh-pages | |
FOLDER: bundles | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |