From 1f8b45a3270fb152eb31e43376d76f1d19642443 Mon Sep 17 00:00:00 2001 From: DevOps Date: Sun, 21 Jun 2026 21:37:21 +0200 Subject: [PATCH] test: heredoc quoted --- .gitea/workflows/deploy-test7.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/deploy-test7.yaml diff --git a/.gitea/workflows/deploy-test7.yaml b/.gitea/workflows/deploy-test7.yaml new file mode 100644 index 0000000..7fa2ceb --- /dev/null +++ b/.gitea/workflows/deploy-test7.yaml @@ -0,0 +1,25 @@ +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"