Skip to content

Commit

Permalink
temp commit to check if secret is accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
ocdbytes committed Aug 8, 2024
1 parent 4f52df3 commit 7502cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-bridge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
- name: Check if secret is accessible
env:
SECRET_TO_CHECK: ${{ secrets.CODECOV_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
if [ -n "$SECRET_TO_CHECK" ]; then
if [ -n "CODECOV_TOKEN" ]; then
echo "Secret is accessible"
else
echo "Secret is not accessible"
Expand Down

0 comments on commit 7502cfa

Please sign in to comment.