Skip to content

Commit 6c72a51

Browse files
committed
Backported release job from master
1 parent 4b96510 commit 6c72a51

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/publish.yml

+16
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,19 @@ jobs:
4141
uses: actions/download-artifact@v4
4242
- name: Upload packages
4343
uses: pypa/gh-action-pypi-publish@release/v1
44+
45+
release:
46+
name: Create a GitHub release
47+
needs: build
48+
runs-on: ubuntu-latest
49+
permissions:
50+
contents: write
51+
steps:
52+
- uses: actions/checkout@v4
53+
- id: changelog
54+
uses: agronholm/release-notes@v1
55+
with:
56+
path: docs/versionhistory.rst
57+
- uses: ncipollo/release-action@v1
58+
with:
59+
body: ${{ steps.changelog.outputs.changelog }}

0 commit comments

Comments
 (0)