Skip to content

Commit

Permalink
Fix shell interpolation issues in get-new-contributors step
Browse files Browse the repository at this point in the history
  • Loading branch information
vuil committed Mar 6, 2024
1 parent bf4d4ff commit 37d6910
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,12 @@ jobs:

- name: 'Identify New Contributors Section'
id: get-new-contributors
env:
body: "${{ fromJson(steps.get-github-release-notes.outputs.data).body }}"
run: |
githubOutput="/tmp/${{ steps.time.outputs.time }}-github-output"
echo "start redir"
echo "${{ fromJson(steps.get-github-release-notes.outputs.data).body }}" > "$githubOutput"
echo "$body" > "$githubOutput"
echo "end redir"
- name: Generate the release notes
Expand Down

0 comments on commit 37d6910

Please sign in to comment.