From 666915e5f61ae35d3306c663d56189fcdd2ff970 Mon Sep 17 00:00:00 2001 From: Adam Wright Date: Tue, 17 Mar 2026 13:30:52 -0400 Subject: [PATCH] Add step to upload statics to S3 --- .github/workflows/upload-to-s3.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/upload-to-s3.yml b/.github/workflows/upload-to-s3.yml index bd502a6..6b9dfbc 100644 --- a/.github/workflows/upload-to-s3.yml +++ b/.github/workflows/upload-to-s3.yml @@ -46,3 +46,8 @@ jobs: run: | aws s3 sync ehld/ "s3://${{ vars.S3_BUCKET }}/${{ env.VERSION }}/ehld/" \ --delete + + - name: Upload Statics to S3 + run: | + aws s3 sync statics/ "s3://${{ vars.S3_BUCKET }}/${{ env.VERSION }}/statics/" \ + --delete