Skip to content

Merge pull request #114 from lifeomic/bump-chromicons-v3.2.0 #93

Merge pull request #114 from lifeomic/bump-chromicons-v3.2.0

Merge pull request #114 from lifeomic/bump-chromicons-v3.2.0 #93

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Exit if not on master branch
if: endsWith(github.ref, 'master') == false
run: exit 0
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org
- name: Build
run: |
yarn
yarn build:gh-pages
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: out # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch