Think I got the directories working now
Some checks failed
Publish Website / publish (push) Failing after 4s

This commit is contained in:
Akshay
2025-07-23 01:21:36 -04:00
parent 0dc04bb4d2
commit bf282c9339

View File

@@ -55,16 +55,19 @@ jobs:
run: |
cp /tmp/template/web/docker-compose.yml ./website/docker-compose.yml
cp /tmp/template/web/Dockerfile ./website/Dockerfile
cd website
ls
# ------------------------------------------------------------
# 6. Stop any old stack, rebuild, and run the new one
# ------------------------------------------------------------
- name: Stop existing stack (ignore if none)
shell: bash
run: docker compose down --remove-orphans || true
run: |
cd ./website
docker compose down --remove-orphans || true
- name: Rebuild & deploy
# shell: bash
run: docker compose up
run: |
cd ./website
docker compose up