You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
897 B
28 lines
897 B
name: Build and Deploy Components+Style Guide |
|
on: |
|
push: |
|
branches: |
|
- webv2 |
|
paths: ['web/stories/**', 'web/components/**'] # 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/checkout@v3 |
|
with: |
|
ref: webv2 # Remove when webv2 gets merged into develop |
|
|
|
- name: Install and Build |
|
run: | # Install npm packages and build the Storybook files |
|
cd web |
|
npm install --include-dev --force |
|
npm run build-storybook -- -o ../docs/components |
|
|
|
- name: Dispatch event to web site |
|
uses: peter-evans/repository-dispatch@v2 |
|
with: |
|
token: ${{ secrets.BUNDLE_STORYBOOK_OWNCAST_ONLINE }} |
|
repository: owncast/owncast.github.io |
|
event-type: bundle-components-library
|
|
|