Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
safafa committed Jan 3, 2024
1 parent c14acfb commit 6a865b7
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,14 @@ jobs:
- name: Get results
id: results
run: |
{
echo 'LOG<<EOF'
cat failing_specs_detector.txt
echo EOF
} >> $GITHUB_OUTPUT
LOG = cat failing_specs_detector.txt
LOG="${LOG//'%'/'%25'}"
LOG="${LOG//$'\n'/'%0A'}"
LOG="${LOG//$'\r'/'%0D'}"
echo 'LOG_ENV<<EOF' >> $GITHUB_ENV
echo $LOG >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Print result
run: echo ${{ steps.results.outputs.LOG }}
run: |
echo ${{ env.LOG_ENV }}

0 comments on commit 6a865b7

Please sign in to comment.