Commit 7af00426 authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #6204 from ethereum-optimism/06-29-fix_Skip_nx_cache_on_releases

fix: Skip nx cache on releases
parents 9fbf3208 de17d71e
......@@ -51,7 +51,7 @@ jobs:
version: nightly
- name: Build
run: pnpm build
run: npx nx run-many --target=build --skip-nx-cache
- name: Setup Canary Snapshot
run: pnpm changeset version --snapshot
......
......@@ -24,7 +24,7 @@
"postinstall": "patch-package && (test -d docs/op-stack && cd docs/op-stack && npx yarn@1 install && cd ../.. || exit 0)",
"ready": "pnpm lint && pnpm test",
"prepare": "husky install",
"release": "pnpm build && pnpm changeset publish",
"release": "npx nx run-many --target=build --skip-nx-cache && pnpm changeset publish",
"install:foundry": "curl -L https://foundry.paradigm.xyz | bash && pnpm update:foundry",
"update:foundry": "foundryup -C $(cat .foundryrc)"
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment