Skip to content

Commit

Permalink
fix: remove Generate files step in workflows/publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Arturo committed Sep 14, 2023
1 parent 442c15e commit 1329190
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,11 @@ jobs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn

- name: Run Lerna bootstrap
- name: Bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn bootstrap
- name: Generate files
if: steps.yarn-cache.outputs.cache-hit == 'true'
run: |
lerna run generate
- name: Build Components
run: |
yarn workspace @telekom/scale-components build
Expand Down Expand Up @@ -85,16 +80,11 @@ jobs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn

- name: Run Lerna bootstrap
- name: Bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn bootstrap
- name: Generate files
if: steps.yarn-cache.outputs.cache-hit == 'true'
run: |
lerna run generate
- name: Build Components
run: |
yarn workspace @telekom/scale-components build
Expand Down Expand Up @@ -165,16 +155,11 @@ jobs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn

- name: Run Lerna bootstrap
- name: Bootstrap
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
WHITELABEL=1 yarn bootstrap
- name: Generate files
if: steps.yarn-cache.outputs.cache-hit == 'true'
run: |
WHITELABEL=1 lerna run generate
- name: Build Components
run: |
WHITELABEL=1 yarn workspace @telekom/scale-components build
Expand Down

0 comments on commit 1329190

Please sign in to comment.