diff --git a/.github/workflows/secrets.yml b/.github/workflows/secrets.yml index 160b19b..9af33bc 100644 --- a/.github/workflows/secrets.yml +++ b/.github/workflows/secrets.yml @@ -19,5 +19,7 @@ jobs: environment: test runs-on: ubuntu-latest steps: - - name: test secrets - run: echo "ENV secrets from github environment settings" - ${{secrets.MY_SECRET}} \ No newline at end of file + - name: test environment secrets + run: | + echo "ENV secrets from github environment settings" - ${{secrets.MY_SECRET}} + echo "Above echo will not print the value, since secret is actually a secret and not exposed anywhere" \ No newline at end of file