Files
backend/scripts/publish.sh
T
TakahashiNguyen 1775192c52
Release package / release (push) Failing after 1m26s
fix: create eatery when manager signup (#33)
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com>
Reviewed-on: #33
2026-04-22 04:08:46 +00:00

11 lines
234 B
Bash
Executable File

#!/bin/bash
CURRENT_DIR=$(pwd)
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)
cd "$SCRIPT_DIR/.."
kubectl delete all --all -n drinkool-backend
kubectl apply -f k8s -n drinkool-backend
cd "$CURRENT_DIR"