about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-04-12T15·25-0400
committergrfn <grfn@gws.fyi>2021-04-12T15·29+0000
commit0faba1a268f5bad1d14931a501fd482fe3c2319a (patch)
tree9387ae62b8bf0daf1356fd1d3f6eb9ada23ea418
parent6e1dba83399b3113fe0ba1ac59f230d4e9165ab7 (diff)
refactor(gws.fyi): Remove cloudfront invalidation step r/2491
I'm not using cloudfront for gws.fyi anymore, so this invalidation step
on deploy is pointless

Change-Id: I153848666dc70acfc456b5dcf276bab2410c4716
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2946
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
-rw-r--r--users/grfn/gws.fyi/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/users/grfn/gws.fyi/default.nix b/users/grfn/gws.fyi/default.nix
index ef3ef6c570..80ce78ccf3 100644
--- a/users/grfn/gws.fyi/default.nix
+++ b/users/grfn/gws.fyi/default.nix
@@ -22,9 +22,6 @@ let
 
 in (writeShellScript "deploy.sh" ''
   ${awscli}/bin/aws --profile personal s3 sync ${website}/ ${bucket}
-  ${awscli}/bin/aws --profile personal cloudfront create-invalidation \
-    --distribution-id "${distributionID}" \
-    --paths "/*"
   echo "Deployed to http://gws.fyi"
 '') // {
   inherit website;