Skip to content

Commit

Permalink
RC #121 - Adding deployment via GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dleadbetter committed Apr 8, 2022
1 parent 228914c commit 8e7a6b5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Deploy
on:
push:
paths: ["stories/**", "src/**"] # Trigger the action only when files change in the folders defined here
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Install and Build 🔧
run: | # Install npm packages and build the Storybook files
npm install
npm run build-storybook
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: master # The branch the action should deploy to.
FOLDER: docs-build # The folder that the build-storybook script generates files.
CLEAN: true # Automatically remove deleted files from the deploy branch
TARGET_FOLDER: docs # The folder that we serve our Storybook files from
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"style": "build/styles.css",
"scripts": {
"build": "webpack --mode production && flow-copy-source -v src types",
"build-storybook": "build-storybook",
"build-storybook": "build-storybook -o docs-build -s ./stories/assets",
"flow": "flow",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down

0 comments on commit 8e7a6b5

Please sign in to comment.