Skip to content

Commit d41c76a

Browse files
chore(CI): Remove build caching from project setup CI (#11697)
1 parent 67e1cd7 commit d41c76a

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

.github/actions/setup-project/action.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,8 @@ runs:
4444
shell: bash
4545
run: yarn install --immutable
4646

47-
- uses: actions/cache@v4
48-
if: inputs.skip-build != 'true' && inputs.skip-build-cache != 'true'
49-
id: cache-build
50-
name: Cache build
51-
with:
52-
path: |
53-
packages/*/dist
54-
packages/*/next
55-
packages/*/deprecated
56-
packages/*/components
57-
packages/react-styles/css
58-
packages/react-core/layouts
59-
packages/react-core/helpers
60-
key: ${{ runner.os }}-build-${{ hashFiles('yarn.lock', '**/package.json', 'packages/**', '!**/node_modules', '!**/dist') }}
61-
6247
- name: Run build
63-
if: inputs.skip-build != 'true' && steps.cache-build.outputs.cache-hit != 'true'
48+
if: inputs.skip-build != 'true'
6449
shell: bash
6550
run: yarn build && yarn build:umd
6651
env:

0 commit comments

Comments
 (0)