From 300474f584cd421ada18c130b1056ebe483a61ad Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 14 Jan 2024 17:26:04 +0100 Subject: [PATCH] Check correct key generation --- .gitea/workflows/ci-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index 9e4eea2..c57e972 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -43,7 +43,7 @@ jobs: run: | source venv/bin/activate SECRET_KEY=$(python3 -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())') - echo $SECRET_KEY > .env + echo "${SECRET_KEY}" - name: Run tests run: |