Skip to content

Merge pull request #36 from swiss/feature/shop #17

Merge pull request #36 from swiss/feature/shop

Merge pull request #36 from swiss/feature/shop #17

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies and build static storybook
run: |
npm install
cd app
npm run build-storybook
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: app/storybook-static