- deploy-targets: Gov_Web_Portals/CyberSecur-Global → CT 7810 via phoenix-deploy-cybersecur-from-workspace.sh - docs: GITEA_REPO_VM_CD_CI_MATRIX.md; MASTER_INDEX link; templates under config/gitea-workflow-templates/ - bump cross-chain-pmm-lps (validate-capital-efficiency workflow) Made-with: Cursor
10 lines
583 B
Bash
Executable File
10 lines
583 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Deploy Gov_Web_Portals/CyberSecur-Global static tree from Phoenix-staged workspace to CT 7810.
|
|
# Invoked by phoenix-deploy-api when deploy-targets.json references this script;
|
|
# requires PHOENIX_REPO_ROOT (proxmox checkout) and PHOENIX_DEPLOY_WORKSPACE (synced CyberSecur-Global tree).
|
|
set -euo pipefail
|
|
: "${PHOENIX_REPO_ROOT:?PHOENIX_REPO_ROOT missing}"
|
|
: "${PHOENIX_DEPLOY_WORKSPACE:?PHOENIX_DEPLOY_WORKSPACE missing}"
|
|
export CYBERSECUR_REPO="$PHOENIX_DEPLOY_WORKSPACE"
|
|
exec bash "${PHOENIX_REPO_ROOT}/scripts/deployment/sync-cybersecur-global-to-ct7810.sh"
|