Skip to content

Commit

Permalink
fix: Copy and deploy complete contents of l1-contracts (#5447)
Browse files Browse the repository at this point in the history
This PR attempts to fix deployments of l1-contracts by copying the
entire package rather than simply the compiled artifacts.
  • Loading branch information
PhilWindle authored Mar 26, 2024
1 parent 22e0f0d commit 501c5e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1192,6 +1192,16 @@ jobs:
command: |
should_release || exit 0
yarn-project/deploy_npm.sh latest
- run:
name: "Release canary to NPM: l1-contracts"
command: |
should_release || exit 0
deploy_npm l1-contracts canary
- run:
name: "Release latest to NPM: l1-contracts"
command: |
should_release || exit 0
deploy_npm l1-contracts latest
- run:
name: "Deploy mainnet fork"
command: |
Expand Down
2 changes: 1 addition & 1 deletion l1-contracts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ RUN yarn && yarn lint
RUN forge build

FROM scratch
COPY --from=0 /usr/src/l1-contracts/out /usr/src/l1-contracts/out
COPY --from=0 /usr/src/l1-contracts/ /usr/src/l1-contracts/

0 comments on commit 501c5e9

Please sign in to comment.