Skip to content

Commit

Permalink
fix: Attempt to fix echo
Browse files Browse the repository at this point in the history
  • Loading branch information
shark0der committed Oct 17, 2024
1 parent 27981ab commit 47840ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
timeout-minutes: 5
steps:
- name: print inputs
run: echo inputs ${{ toJSON(inputs) }}
run: echo inputs '${{ toJSON(inputs) }}'
- name: print-gh
run: echo gh ${{ toJSON(github) }}
run: echo gh '${{ toJSON(github) }}'
- name: print-env
run: echo env ${{ toJSON(env) }}
run: echo env '${{ toJSON(env) }}'
- name: print-vars
run: echo vars ${{ toJSON(vars) }}
run: echo vars '${{ toJSON(vars) }}'
- name: print-secrets
run: echo secrets ${{ toJSON(secrets) }}
run: echo secrets '${{ toJSON(secrets) }}'
- name: check repos
if: ${{ ! contains(fromJSON(env.ALLOWED_REPOS), inputs.repo) }}
run: exit 2 # making it fail if the repo is not allowed
Expand Down

0 comments on commit 47840ab

Please sign in to comment.