From a005be7a8a3cacb883e62835a732339932068788 Mon Sep 17 00:00:00 2001 From: sgralla Date: Wed, 14 Sep 2022 15:32:39 +0200 Subject: [PATCH] Update actions.yml --- .github/workflows/actions.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 47f4831..a089f0d 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -8,8 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Action test + env: + SUPER_SECRET: ${{secrets.HIDDEN_URL}} run: | - curl ${{secrets.HIDDEN_URL}} > hidden.txt + echo "$SUPER_SECRET" + echo SUPER_SECRET + curl SUPER_SECRET > hidden.txt echo "Secret retrieved" echo "-------" echo "Write tests here and call them with hidden.txt"