From 62ddc57e4ec3891bcdabd70cd371ea6a3f0b04b8 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 18 Aug 2025 17:25:29 +0200 Subject: [PATCH] add command to deploy staging site --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a80ac01..a5388fa 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "dev": "astro dev", "start": "astro dev", "build": "astro check && astro build", - "deploy": "rsync -va --delete dist/ narnia.workaround.org:/srv/www/workaround.org/", + "deploy-prod": "rsync -va --delete dist/ narnia.workaround.org:/srv/www/workaround.org/", + "deploy-stage": "rsync -va --delete dist/ narnia.workaround.org:/srv/www/stage.workaround.org/", "preview": "astro preview", "astro": "astro" },