feat(gws.fyi): Add a recipe for tomato paste

Someone asked for this, so here it is.

Change-Id: I00c52deb8c3f4e8f786cf4763b39d862ad041f6d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3371
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Griffin Smith 2021-08-17 22:17:39 -04:00 committed by grfn
parent 8dd5ee26d7
commit 15163fdc16
4 changed files with 112 additions and 1 deletions

View file

@ -17,6 +17,7 @@ let
mkdir -p $out
cp ${css} $out/main.css
cp ${site.index} $out/index.html
cp -r ${site.recipes} $out/recipes
cp ${resume} $out/resume.pdf
'';
@ -24,5 +25,5 @@ in (writeShellScript "deploy.sh" ''
${awscli2}/bin/aws --profile personal s3 sync ${website}/ ${bucket}
echo "Deployed to http://gws.fyi"
'') // {
inherit website;
inherit website site;
}