Skip to content

Commit 17ec87e

Browse files
committed
feat: fix paths for web deploy
1 parent 9ad4947 commit 17ec87e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy-crisiscleanup-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
- name: Publish
191191
id: publish
192192
run: >-
193-
targets="./cdk.out/publish-Assets-FileAsset1-step.sh,./cdk.out/publish-Assets-FileAsset10-step.sh,./cdk.out/publish-Assets-FileAsset11-step.sh,./cdk.out/publish-Assets-FileAsset12-step.sh,./cdk.out/publish-Assets-FileAsset13-step.sh,./cdk.out/publish-Assets-FileAsset2-step.sh,./cdk.out/publish-Assets-FileAsset3-step.sh,./cdk.out/publish-Assets-FileAsset4-step.sh,./cdk.out/publish-Assets-FileAsset5-step.sh,./cdk.out/publish-Assets-FileAsset6-step.sh,./cdk.out/publish-Assets-FileAsset7-step.sh,./cdk.out/publish-Assets-FileAsset8-step.sh,./cdk.out/publish-Assets-FileAsset9-step.sh"
193+
targets="$(find ./cdk.out -name "publish-Assets-FileAsset1-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset10-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset11-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset12-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset13-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset2-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset3-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset4-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset5-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset6-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset7-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset8-step.sh" -type f | head -1),$(find ./cdk.out -name "publish-Assets-FileAsset9-step.sh" -type f | head -1)"
194194
195195
echo -n "$targets" | xargs -r -d',' -t -n1 -P2 /bin/bash
196196
deploy-development-crisiscleanup-web-deploy:

0 commit comments

Comments
 (0)