Skip to content

Merge pull request #110 from birotaio/bugfix/vue-router-external-dep #241

Merge pull request #110 from birotaio/bugfix/vue-router-external-dep

Merge pull request #110 from birotaio/bugfix/vue-router-external-dep #241

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Node setup 📦
uses: actions/setup-node@v3
with:
node-version: 16
- name: Authenticate for private NPM packages 🔑
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Install and Build 🔧
run: |
yarn install
yarn build:sb
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: storybook-static # The folder the action should deploy.