From 75baaa9f0c9840f8960d754c4993c6c34ae7aa28 Mon Sep 17 00:00:00 2001 From: Bauke Date: Fri, 8 Mar 2024 15:00:17 +0100 Subject: [PATCH] Add the Netlify deploy task. --- Makefile.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.toml b/Makefile.toml index 15b0ac1..61ba33a 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -3,6 +3,12 @@ clear = true command = "bun" args = ["--bun", "astro", "build"] +[tasks.deploy-netlify] +clear = true +command = "netlify" +dependencies = ["lint", "build"] +args = ["deploy", "-p", "-d", "out/", "-s", "driftingnebula-com"] + [tasks.dev] clear = true command = "bun"