We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b77e5 commit 6f33736Copy full SHA for 6f33736
.github/workflows/publish.yml
@@ -13,7 +13,7 @@ jobs:
13
runs-on: ubuntu-latest
14
environment: release
15
steps:
16
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
17
- name: Set up Python
18
uses: actions/setup-python@v4
19
with:
@@ -39,3 +39,20 @@ jobs:
39
uses: actions/download-artifact@v3
40
- name: Upload packages
41
uses: pypa/gh-action-pypi-publish@release/v1
42
+
43
+ release:
44
+ name: Create a GitHub release
45
+ needs: build
46
+ runs-on: ubuntu-latest
47
+ permissions:
48
+ contents: write
49
+ steps:
50
51
+ - id: changelog
52
+ uses: agronholm/release-notes@v1
53
+ with:
54
+ path: docs/news.rst
55
+ pattern: "^\\*\\*([0-9a-z.]+) "
56
+ - uses: ncipollo/release-action@v1
57
58
+ body: ${{ steps.changelog.outputs.changelog }}
0 commit comments