Skip to content

Commit

Permalink
make GA debug logging work
Browse files Browse the repository at this point in the history
  • Loading branch information
neilstephens committed Jun 30, 2023
1 parent 18f0d42 commit 1321e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/opendatacon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
name: Set log level
shell: bash
run: |
[ ${{ runner.debug }} ] && echo 'LOG_LVL=debug' || echo 'LOG_LVL=error' >> $GITHUB_ENV
([ ${{ runner.debug }} ] && echo 'LOG_LVL=debug' || echo 'LOG_LVL=error') >> $GITHUB_ENV
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
name: Set log level
shell: bash
run: |
[ ${{ runner.debug }} ] && echo 'LOG_LVL=debug' || echo 'LOG_LVL=error' >> $GITHUB_ENV
([ ${{ runner.debug }} ] && echo 'LOG_LVL=debug' || echo 'LOG_LVL=error') >> $GITHUB_ENV
- name: Start run wrapper
run: echo '#!/bin/bash' >> $HOME/run.sh
Expand Down

0 comments on commit 1321e24

Please sign in to comment.