Merge pull request 'fix: cd to site dir before docker compose commands' (#18) from fix/deploy-workdir into main
All checks were successful
CI / ci (push) Has been skipped
CI / pr-e2e (push) Has been skipped
CI / nightly-e2e (push) Has been skipped
CI / deploy (push) Successful in 25s

This commit was merged in pull request #18.
This commit is contained in:
2026-03-01 09:40:43 +00:00

View File

@@ -6,6 +6,8 @@ set -euo pipefail
SITE_DIR=/srv/sum/nohype SITE_DIR=/srv/sum/nohype
APP_DIR=${SITE_DIR}/app APP_DIR=${SITE_DIR}/app
cd "${SITE_DIR}"
echo "==> Pulling latest code" echo "==> Pulling latest code"
git -C "${APP_DIR}" pull origin main git -C "${APP_DIR}" pull origin main