Skip to content

Commit

Permalink
chore(action): fix deploy storybook (#6333)
Browse files Browse the repository at this point in the history
  • Loading branch information
mperdomo-bc committed Mar 7, 2024
1 parent 5c18981 commit e3e96de
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ on:
branches:
- development

env:
HUSKY: 0

jobs:
pull-request:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.16]
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install node.js v${{ matrix.node-version }}
uses: actions/setup-node@v2
- name: Install node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version-file: './.nvmrc'
cache: 'yarn'

- name: Install dependencies
run: yarn
run: yarn --frozen-lockfile

# Non-working command
# - name: Deploy storybook - base components
# run: yarn storybook:base
# Non-working command
# - name: Deploy storybook - base components
# run: yarn storybook:base

- name: Deploy storybook - wallet
run: yarn storybook:deploy-wallet --ci
env:
GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}

0 comments on commit e3e96de

Please sign in to comment.