From cf10ca3ed8bb4da8f4309b0fc6e58bdd1bef417b Mon Sep 17 00:00:00 2001 From: DevOps Date: Sun, 21 Jun 2026 21:37:38 +0200 Subject: [PATCH] test: no heredoc, echo-based --- .gitea/workflows/deploy-test8.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/deploy-test8.yaml diff --git a/.gitea/workflows/deploy-test8.yaml b/.gitea/workflows/deploy-test8.yaml new file mode 100644 index 0000000..93c7369 --- /dev/null +++ b/.gitea/workflows/deploy-test8.yaml @@ -0,0 +1,25 @@ +name: Deploy Test8 +run-name: Deploy Test8 + +on: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + env: + ENV_TMPFILE: /tmp/nexus-deploy-env + DEPLOY_PATH: /home/projekte_bao/openclaw/data/openclaw/workspace/nexus + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: main + - name: Prepare env + run: | + echo "POSTGRES_DB=nexus" > "${ENV_TMPFILE}" + echo "POSTGRES_PASSWORD=secret" >> "${ENV_TMPFILE}" + echo "OK" + - name: Health Check + run: | + curl -sf --max-time 10 https://nexus.noveria.net/health && echo "OK"