Files
nexus/.gitea/workflows/deploy-test7.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 21: could not find expected ':'
devops 1f8b45a327
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
test: heredoc quoted
2026-06-21 21:37:21 +02:00

26 lines
480 B
YAML

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"