Skip to content

Commit

Permalink
fix: release script (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
danilowoz committed Mar 12, 2023
1 parent b71cebd commit c3a0e7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
run: npm ci --force

- name: Lint
run: npm run lint
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
run: npm ci --force

- name: Lint
run: npm run lint
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
run: npm ci --force

- name: Build
env:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci
run: npm ci --force

- name: Build storybook
run: npm run build:docs
Expand Down

0 comments on commit c3a0e7c

Please sign in to comment.