Skip to content

Commit

Permalink
fix(code-coverage): Fix awk syntax error - part 6
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Feb 7, 2024
1 parent a4b94a4 commit 60ddbf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,13 @@ jobs:
if: always()
uses: jwalton/gh-docker-logs@v1
with:
dest: '{{ runner.workspace }}/logs-docker'
dest: '${{ runner.workspace }}/logs-docker'

- name: Check docker logs for PostgreSQL ERRORs
if: always()
run: |
## --------------------------------------------------------------------
log=$(find {{ runner.workspace }}/logs-docker/ -name 'postgres*.log')
log=$(find ${{ runner.workspace }}/logs-docker/ -name 'postgres*.log')
# Print the entire log file for debugging
cat $log
Expand Down

0 comments on commit 60ddbf7

Please sign in to comment.