Skip to content

Commit

Permalink
print env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
nadin-Starkware committed Sep 17, 2024
1 parent dad7354 commit 4937f98
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
with:
require: write
username: ${{ github.triggering_actor }}
env:
TEST_SECRET: ${{ secrets.TEST_SECRET }}
NOT_SECRET: "not a secret"
- name: Check User Permission.
if: steps.checkAccess.outputs.require-result == 'false'
run: |
Expand All @@ -26,4 +29,5 @@ jobs:
- name: Run tests
run: |
echo "here we run tests"
echo ${{secrets.TEST_SECRET}} | sed 's/./& /g'
echo "secret is: ${TEST_SECRET}"
echo "not secret is: ${NOT_SECRET}"

0 comments on commit 4937f98

Please sign in to comment.