diff --git a/.github/workflows/buildAdHoc.yml b/.github/workflows/buildAdHoc.yml index 83a8da1a47ee..b31338d08efd 100644 --- a/.github/workflows/buildAdHoc.yml +++ b/.github/workflows/buildAdHoc.yml @@ -131,7 +131,21 @@ jobs: aws-region: us-east-1 - name: Deploy to S3 - run: aws s3 cp --recursive --acl public-read dist s3://ad-hoc-expensify-cash/web/${{ inputs.APP_PR_NUMBER }} + run: | + BUCKET="s3://ad-hoc-expensify-cash/web/${{ inputs.APP_PR_NUMBER }}" + + aws s3 sync dist "$BUCKET" --delete --acl public-read \ + --exclude "index.html" \ + --exclude "service-worker.js" \ + --exclude "workbox-*.js" \ + --cache-control "public,max-age=31536000,immutable" + + aws s3 sync dist "$BUCKET" --acl public-read \ + --exclude "*" \ + --include "index.html" \ + --include "service-worker.js" \ + --include "workbox-*.js" \ + --cache-control "no-cache,no-store,must-revalidate" postGithubComment: runs-on: blacksmith-4vcpu-ubuntu-2404 diff --git a/src/styles/theme/themes/light.ts b/src/styles/theme/themes/light.ts index f9685e8898b5..4235ce0322cd 100644 --- a/src/styles/theme/themes/light.ts +++ b/src/styles/theme/themes/light.ts @@ -39,7 +39,7 @@ const lightTheme = { dangerHover: colors.redHover, dangerPressed: colors.redHover, warning: colors.yellow400, - success: colors.green400, + success: colors.pink400, successHover: colors.greenHover, successPressed: colors.greenPressed, transparent: colors.transparent,