Skip to content

Commit

Permalink
Prevent GitHub Release workflow from failing
Browse files Browse the repository at this point in the history
A better fix is needed in the future
  • Loading branch information
mhostetter committed May 9, 2023
1 parent 7418aa5 commit 2e49783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- name: Construct release notes
run: |
cp docs/release-notes/${{ steps.current.outputs.version }}.md release_notes.md
echo -e "\n## Commits\n" >> release_notes.md
# cp docs/release-notes/${{ steps.current.outputs.version }}.md release_notes.md
echo -e "\n## Commits\n" > release_notes.md
git log --oneline ${{ steps.previous.outputs.version }}..${{ steps.current.outputs.version }} >> release_notes.md
- name: Create GitHub release
Expand Down

0 comments on commit 2e49783

Please sign in to comment.