From 3725c38910b6d710d87761420c5787e2c7f9e016 Mon Sep 17 00:00:00 2001 From: Frederic M <43849398+fad3t@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:12:43 +0200 Subject: [PATCH] secret --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fdb0260..f60346c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,10 @@ jobs: - run: echo "this is the first step of my job, let's check out the repository.." - name: check out code uses: actions/checkout@v4 - - run: echo "and now we list files!" + - name: display super secret + env: + top-secret: ${{ secrets.TOP-SECRET }} + run: echo "it's very sensitive.. ${top-secret}" - name: list files run: | - ls ${{ github.workspace }} + ls ${{ github.workspace }} \ No newline at end of file