Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Commit 64c200a

Browse files
committed
fix: allow docker/dfx/lib in deployment rsync
Changed rsync exclusion from '**/lib' to specifically exclude only Solidity/Foundry lib directories: - examples/**/contracts/lib - examples/**/ethereum/lib This allows docker/dfx/lib (shell script libraries) to be synced to the deployment server.
1 parent 99987ef commit 64c200a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353
--exclude '**/out' \
5454
--exclude '**/cache' \
5555
--exclude '**/broadcast' \
56-
--exclude '**/lib' \
56+
--exclude 'examples/**/contracts/lib' \
57+
--exclude 'examples/**/ethereum/lib' \
5758
./ ${{ vars.DEPLOY_USER }}@${{ vars.DEPLOY_HOST }}:${{ env.DEPLOY_PATH }}/
5859
5960
- name: Create/overwrite .env from secret

0 commit comments

Comments
 (0)