Skip to content

Commit

Permalink
Revert "fix: CI publish (#2197)"
Browse files Browse the repository at this point in the history
This reverts commit 08aae91.
  • Loading branch information
felixw committed Nov 15, 2023
1 parent 0f80cb2 commit bdea4ca
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ jobs:
with:
path: |
node_modules
**/node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install project dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn

- name: Bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn bootstrap
Expand Down Expand Up @@ -72,14 +73,15 @@ jobs:
with:
path: |
node_modules
**/node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install project dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn

- name: Bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn bootstrap
Expand Down Expand Up @@ -146,14 +148,15 @@ jobs:
with:
path: |
node_modules
**/node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install project dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn

- name: Bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
WHITELABEL=1 yarn bootstrap
Expand Down

0 comments on commit bdea4ca

Please sign in to comment.