fix: harden production release deployment
deploy / deploy (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-29 17:36:03 +02:00
parent 5e2453c29a
commit a4a71ebc23
15 changed files with 74 additions and 51 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ set -euo pipefail
cd "$(dirname "$0")/.."
unraid_host="${UNRAID_SSH_HOST:-unraid-itworx}"
remote_root="${UNRAID_APP_ROOT:-/mnt/user/appdata/vacatureradar/source}"
remote_root="${UNRAID_APP_ROOT:-/mnt/user/appdata/VacatureRadar}"
archive_name="vacatureradar-deploy-$$.tar.gz"
local_archive="$(mktemp -t "${archive_name}.XXXXXX")"
trap 'rm -f "$local_archive"' EXIT