From 4a0d15c9c2d12f5d5ae4c3bdd434d845e7c3a42d Mon Sep 17 00:00:00 2001 From: Elijah Date: Sun, 14 Jan 2024 20:04:05 +0100 Subject: [PATCH] Test the gitea actions secrets and variables system --- .gitea/workflows/ci-pipeline.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index efb603e..a7d4441 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -13,7 +13,9 @@ jobs: runs-on: ubuntu-22.04 env: - SECRET_KEY: "t3st_dummy_s3cr3t_k3y" + SECRET_KEY: {{ secrets.SECRET_KEY }} + STATIC_ROOT: {{ vars.STATIC_ROOT }} + MEDIA_ROOT: {{ vars.MEDIA_ROOT }} steps: - uses: actions/checkout@v4