Skip to content

Commit

Permalink
fix release notes path in action
Browse files Browse the repository at this point in the history
  • Loading branch information
jfhbrook committed Aug 30, 2024
1 parent 2d666a9 commit 60bafb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: release-notes
path: RELEASE_NOTES.md
path: notes

pypi-release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -99,10 +99,10 @@ jobs:
uses: actions/download-artifact@v3
with:
name: release-notes
path: RELEASE_NOTES.md
path: notes
- name: Create a GitHub release
env:
GITHUB_TOKEN: ${{ github.TOKEN }}
shell: bash
run: |
gh release create '${{ github.ref }}' --title 'Release v${{ needs.versions.outputs.release-version }}' --notes "$(cat RELEASE_NOTES.md)" dist/* man/pyee.1
gh release create '${{ github.ref }}' --title 'Release v${{ needs.versions.outputs.release-version }}' --notes "$(cat notes/RELEASE_NOTES.md)" dist/* man/pyee.1

0 comments on commit 60bafb2

Please sign in to comment.