feat(glittershark): Add resume + deploy it to gws.fyi

Change-Id: If9cf64c97621313af86074752d0959506059888a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2079
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-11-16 11:01:28 -05:00 committed by glittershark
parent bdc5d0cfa0
commit b1f2c2f48e
24 changed files with 2503 additions and 0 deletions

View file

@ -2,12 +2,14 @@ args@{ pkgs, ... }:
with pkgs;
let
site = import ./site.nix args;
resume = import ../resume args;
bucket = "s3://gws.fyi";
distributionID = "E2ST43JNBH8C64";
website =
runCommand "gws.fyi" { } ''
mkdir -p $out
cp ${site.index} $out/index.html
cp ${resume} $out/resume.pdf
'';
in writeShellScript "deploy.sh" ''