From 393a7a528f817bbb12fb9e7bd1be8f08893dc3e6 Mon Sep 17 00:00:00 2001 From: Subindev D <64056430+subindev-d@users.noreply.github.com> Date: Tue, 15 Apr 2025 10:53:35 +0100 Subject: [PATCH] add secret as env variable --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c46e2aa..e1450a4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,5 +28,7 @@ jobs: steps: - name: Debug tag output + env: + TEST_SECRET: ${{ secrets.TEST_SECRET}} run: | - echo "test secret: ${{ secrets.TEST_SECRET }}" \ No newline at end of file + echo "test secret: $TEST_SECRET" \ No newline at end of file