2024-12-23 20:28:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-12-23 21:21:47 +00:00
|
|
|
echo "Building static assets for dylanbaird.com."
|
2024-12-23 20:28:19 +00:00
|
|
|
cp -r ../dylanbaird.com .
|
2024-12-23 21:21:47 +00:00
|
|
|
cd ./dylanbaird.com
|
|
|
|
npx tailwindcss -i ./src/input.css -o ./src/output.css --minify
|
|
|
|
rm ./src/input.css
|
|
|
|
cd ../
|
|
|
|
|
2025-05-27 18:31:11 +00:00
|
|
|
echo "Copying static assets for alloro.ca"
|
|
|
|
mkdir -p alloro.ca
|
2025-05-27 19:13:23 +00:00
|
|
|
cp ../alloro.ca/index*.html alloro.ca/
|
2025-05-27 18:31:11 +00:00
|
|
|
|
2024-12-23 21:21:47 +00:00
|
|
|
echo "Building Docker container."
|
2024-12-23 20:28:19 +00:00
|
|
|
sudo docker build -t boulangermontrealais/barrios:caddy .
|
2024-12-23 21:21:47 +00:00
|
|
|
|
|
|
|
echo "Pushing Docker container to registry."
|
2025-05-27 18:31:11 +00:00
|
|
|
docker push boulangermontrealais/barrios:caddy
|
2024-12-23 21:21:47 +00:00
|
|
|
|
|
|
|
echo "Cleaning up artifacts for dylanbaird.com."
|
2024-12-23 20:28:19 +00:00
|
|
|
rm -rf dylanbaird.com
|
|
|
|
|
2025-05-27 18:31:11 +00:00
|
|
|
echo "Build and push completed successfully."
|