about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-06-02T20·37+0200
committergrfn <grfn@gws.fyi>2021-06-02T20·43+0000
commitbf9857beff50f534a04a080746f52fee8904be12 (patch)
tree097d57c77b4a5662389f8dd3d509473c7e3363a9
parente0708cba8d8b95f961534bdd2d605cdda78dbb6c (diff)
feat(gws.fyi): Use awscli2 to deploy r/2642
Use awscli2 rather than awscli to deploy - less because I actually need
any specific functionality from the new version, and more because I
already use awscli2 on my systems and it's nice to always use the same
version of stuff

Change-Id: Id0e5b63dde1857c2e417ac2eeb2f769ebcc0f956
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3175
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
-rw-r--r--users/grfn/gws.fyi/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/grfn/gws.fyi/default.nix b/users/grfn/gws.fyi/default.nix
index 80ce78ccf3..ca24868abb 100644
--- a/users/grfn/gws.fyi/default.nix
+++ b/users/grfn/gws.fyi/default.nix
@@ -21,7 +21,7 @@ let
     '';
 
 in (writeShellScript "deploy.sh" ''
-  ${awscli}/bin/aws --profile personal s3 sync ${website}/ ${bucket}
+  ${awscli2}/bin/aws --profile personal s3 sync ${website}/ ${bucket}
   echo "Deployed to http://gws.fyi"
 '') // {
   inherit website;