Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
typescript-boilerplate/.github/workflows/deploy-gh-pages.yml
View runs Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (30 sloc)
800 Bytes
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
# | |
# Builds the docs and deploys to GitHub pages | |
# | |
# https://github.com/actions/setup-node | |
# Using https://github.com/marketplace/actions/deploy-to-github-pages | |
name: Deploy to Github pages | |
on: | |
push: | |
#tags: | |
# - v* | |
branches: | |
- master | |
jobs: | |
deploy_pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '12' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn docs | |
- run: touch docs/.nojekyll | |
- name: Deploy docs 🚀 | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: docs # The folder the action should deploy. |