refactor: simplify deployment infrastructure using starship

This commit is contained in:
Prad N
2025-01-11 14:57:58 -05:00
parent 20317bbc91
commit 2892641f17
3 changed files with 9 additions and 3 deletions
+7 -2
View File
@@ -344,13 +344,18 @@ release-check:
validate-tag:
@sh ./scripts/validate_tag.sh
deploy-deps:
@echo "Installing deploy dependencies"
npm install -g @starship-ci/cli
starship install
deploy-up:
@echo "Starting deployment"
cd .github/deploy && devbox run up
starship start --config .github/deploy/config.yml
deploy-down:
@echo "Stopping deployment"
cd .github/deploy && devbox run down
starship stop --config .github/deploy/config.yml
###############################################################################
### help ###