Skip to content

Commit

Permalink
feat(WUC): Deploy Storybook (#28)
Browse files Browse the repository at this point in the history
* feat: addition auto deploy for storybook

* refactor: fix names in ci.yml for deploy storybook
  • Loading branch information
Uzhastin-Nikita committed Mar 17, 2022
1 parent 377f9c5 commit 5a67d02
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,38 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release

deploy-storybook:
name: Update storybook
needs: [test-lint, test-build, pre_ci]
timeout-minutes: 5
if: ${{ github.ref == 'refs/heads/master' }}

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16

- name: Manage cache
uses: actions/[email protected]
with:
path: |
./node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('.github/workflows/*.yml') }}
restore-keys: |
${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
${{ runner.OS }}-build
- name: Prepare token
run: echo "//npm.pkg.github.com/:_authToken=${GH_TOKEN}" >> .npmrc
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

- name: Build storybook
run: npm run build-storybook

- name: Deploy storybook
run: npm run deploy-storybook

0 comments on commit 5a67d02

Please sign in to comment.