chore: remove deploy diagnostic test workflows
CI - Build & Test / Backend (.NET) (push) Has been cancelled
CI - Build & Test / Frontend (Vue/TS) (push) Has been cancelled
CI - Build & Test / Security Check (push) Has been cancelled

This commit is contained in:
2026-06-21 21:41:22 +02:00
parent dd38570c7b
commit f33e8c8b58
8 changed files with 0 additions and 176 deletions
-11
View File
@@ -1,11 +0,0 @@
name: Deploy Test
run-name: Deploy Test
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "hello"
-15
View File
@@ -1,15 +0,0 @@
name: Deploy Test2
run-name: Deploy Test2
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
DEPLOY_PATH: /home/projekte_bao/openclaw/data/openclaw/workspace/nexus
ENV_TMPFILE: /tmp/nexus-deploy-env
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
steps:
- run: echo "hello $DEPLOY_PATH"
-35
View File
@@ -1,35 +0,0 @@
name: Deploy Test3
run-name: Deploy Test3
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
DEPLOY_PATH: /home/projekte_bao/openclaw/data/openclaw/workspace/nexus
ENV_TMPFILE: /tmp/nexus-deploy-env
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
ENV_JWT_KEY: ${{ secrets.ENV_JWT_KEY }}
ENV_OPENCLAW_TOKEN: ${{ secrets.ENV_OPENCLAW_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
- name: Resolve Version
id: version
run: |
VERSION=$(cat VERSION | tr -d '[:space:]')
echo "version=${VERSION}" >> "$GITEA_OUTPUT"
- name: Prepare env
run: |
cat > "${ENV_TMPFILE}" <<ENVEOF
POSTGRES_PASSWORD=${ENV_POSTGRES_PASSWORD}
ENVEOF
echo "OK"
- name: Health Check
run: |
curl -sf --max-time 10 https://nexus.noveria.net/health && echo "OK"
-18
View File
@@ -1,18 +0,0 @@
name: Deploy Test4
run-name: Deploy Test4
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
ENV_TMPFILE: /tmp/nexus-deploy-env
ENV_POSTGRES_PASSWORD: ${{ secrets.ENV_POSTGRES_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- run: echo "OK"
-19
View File
@@ -1,19 +0,0 @@
name: Deploy Test5
run-name: Deploy Test5
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: Resolve Version
id: version
run: |
VERSION=$(cat VERSION | tr -d '[:space:]')
echo "version=${VERSION}" >> "$GITEA_OUTPUT"
-28
View File
@@ -1,28 +0,0 @@
name: Deploy Test6
run-name: Deploy Test6
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
ENV_TMPFILE: /tmp/nexus-deploy-env
DEPLOY_PATH: /home/test
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: Test heredoc
run: |
HOST_OWNER_PASSWORD="testpass"
cat > "${ENV_TMPFILE}" <<ENVEOF
POSTGRES_DB=nexus
POSTGRES_USER=nexus
POSTGRES_PASSWORD=secret
JWT_KEY=key123
OWNER_PASSWORD=${HOST_OWNER_PASSWORD}
ENVEOF
echo "OK"
-25
View File
@@ -1,25 +0,0 @@
name: Deploy Test7
run-name: Deploy Test7
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
ENV_TMPFILE: /tmp/nexus-deploy-env
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: Test heredoc quoted
run: |
HOST_PW="testpass"
cat > "${ENV_TMPFILE}" << 'ENVEOF'
POSTGRES_DB=nexus
POSTGRES_PASSWORD=secret
OWNER_PASSWORD=nonexpand
ENVEOF
echo "OK"
-25
View File
@@ -1,25 +0,0 @@
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"