1
0

Use Netlify build cache

This commit is contained in:
Zef Hemel 2023-01-26 12:09:24 +01:00
parent cf9ca06dff
commit 7de6e40f82

View File

@ -1,12 +1,16 @@
#!/bin/bash
#!/bin/bash -e
echo "Install Deno"
curl -fsSL https://deno.land/install.sh | sh
export PATH=~/.deno/bin:$PATH
export DENO_PATH=$NETLIFY_CACHE_DIR/deno
echo "NETLIFY_CACHE_DIR: $NETLIFY_CACHE_DIR"
echo "DENO_PATH: $DENO_PATH"
echo "Generating version number..."
echo "export const version = '$(git rev-parse HEAD)';" > version.ts
echo "Building silver bullet"
deno task build
echo "Cleaning website build dir"