Skip to content

Commit bb3345f

Browse files
committed
2 parents e8de032 + 473ef36 commit bb3345f

31 files changed

+221
-10
lines changed

.dockerignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
**/.gitattributes
1010
**/.DS_Store
1111
**/build
12-
**/dist
12+
**/dist
13+
**/storybook-static
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Deploy Storybook to Github Pages
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
release:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout 🛎️
12+
uses: actions/checkout@v2.3.1
13+
with:
14+
persist-credentials: false
15+
- name: Install and Build 🔧
16+
run: | # Install npm packages and build the Storybook files
17+
npm install
18+
npm run build-storybook
19+
- name: Deploy 🚀
20+
uses: JamesIves/github-pages-deploy-action@3.6.2
21+
with:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
BRANCH: gh-pages # The branch the action should deploy to.
24+
FOLDER: storybook-static # The folder that the build-storybook script generates files.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ yarn-error.log*
2626
build
2727
**/*.tgz
2828
package
29+
storybook-static

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ docker-compose.yml
1212
package-lock.json
1313
**/*.tgz
1414
package
15+
meta
16+
storybook-static
17+

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# Frame One Table
1+
[![Frame One Table Logo](./meta/banner1_white.png)](https://frame-one-software.github.io/frame-one-table/)
2+
<br/>
23
[![NPM](https://img.shields.io/npm/v/frame-one-table.svg)](https://www.npmjs.com/package/frame-one-table)
34
[![NPM](https://img.shields.io/npm/dt/frame-one-table.svg)](https://www.npmjs.com/package/frame-one-table)
5+
[![GITHUB](https://img.shields.io/github/issues/Frame-One-Software/frame-one-table.svg)](https://github.com/Frame-One-Software/frame-one-table/issues)
6+
7+
### [➡️ Try out the table in the Storybook! ⬅️](https://frame-one-software.github.io/frame-one-table/)
48

59
## Installation
610

meta/banner1_dark.png

25 KB
Loading

meta/banner1_dark.svg

Lines changed: 1 addition & 0 deletions
Loading

meta/banner1_white.png

56.2 KB
Loading

meta/banner1_white.svg

Lines changed: 1 addition & 0 deletions
Loading

meta/banner2_dark.png

19.9 KB
Loading

0 commit comments

Comments
 (0)