From 49d2c48d31d5db2645f680de0a40bb8c38a75e9c Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 18 Mar 2025 15:34:39 +0000 Subject: [PATCH] explicitly adding local env vars to file --- .gitea/workflows/pull.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/pull.yaml b/.gitea/workflows/pull.yaml index 03597f2..0c4f15c 100644 --- a/.gitea/workflows/pull.yaml +++ b/.gitea/workflows/pull.yaml @@ -44,6 +44,10 @@ jobs: MINIO_SECRET_KEY: ${{ secrets.MINIO_SECRET_KEY }} MONGO_ENDPOINT: ${{ vars.MONGO_ENDPOINT }} run: | + echo "MINIO_ENDPOINT=${MINIO_ENDPOINT}" >> .env + echo "MINIO_ACCESS_KEY=${MINIO_ACCESS_KEY}" >> .env + echo "MINIO_SECRET_KEY=${MINIO_SECRET_KEY}" >> .env + echo "MONGO_ENDPOINT=${MONGO_ENDPOINT}" >> .env /opt/poetry/bin/poetry run coverage run -m pytest . - name: Coverage Report run: |