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