Skip to content

Commit

Permalink
Fix format for writing to $GITHUB_ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelallan72 committed Jul 31, 2024
1 parent c95a5e2 commit 2c446e7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/weekly_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,13 @@ jobs:
merge-multiple: true

- name: Generate summary message
run: python3 ./scripts/weekly-tests-summary.py "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> "$GITHUB_ENV"
run: |
{
echo "results<<EOF"
python3 ./scripts/weekly-tests-summary.py "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
echo EOF
} >> "$GITHUB_ENV"
- name: Send the Mattermost Message
uses: mattermost/action-mattermost-notify@master
Expand Down

0 comments on commit 2c446e7

Please sign in to comment.