From 240b80c4f08d26fbc7dd91a84be1282694830424 Mon Sep 17 00:00:00 2001 From: sgralla Date: Wed, 14 Sep 2022 15:20:45 +0200 Subject: [PATCH] Update actions.yml --- .github/workflows/actions.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 47f4831..3fc30d3 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -3,14 +3,16 @@ name: Run Tests on: [push, pull_request] +env: + sec : ${{secrets.HIDDEN_URL}} jobs: yolo: runs-on: ubuntu-latest steps: - name: Action test run: | - curl ${{secrets.HIDDEN_URL}} > hidden.txt - echo "Secret retrieved" + curl sec > hidden.txt + echo "Secret retrieved" + sec echo "-------" echo "Write tests here and call them with hidden.txt" echo "TODO"