Merge pull request #154 from osstotalsoft/users/achirca/ERPFINSLFO-36655 #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) TotalSoft. | |
# This source code is licensed under the MIT license. | |
name: Build and Deploy Storybook | |
on: | |
push: | |
branches: | |
- master | |
paths: ['src/stories/**', 'src/components/**'] # Trigger the action only when files change in the folders defined here | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
storybook-build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Install 🔧 | |
run: yarn install | |
- name: Run tests ⚠️ | |
run: yarn test | |
- name: Build 🔧 | |
run: yarn run build-storybook | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.STORYBOOK_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: storybuild # The folder that the build-storybook script generates files. | |
CLEAN: true # Automatically remove deleted files from the deploy branch |