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.
gh release
1 parent b027a62 commit 523f336Copy full SHA for 523f336
.github/workflows/release.yml
@@ -44,9 +44,12 @@ jobs:
44
rm -rf tmp
45
46
- name: Create GitHub release
47
- uses: cockpit-project/action-release@7d2e2657382e8d34f88a24b5987f2b81ea165785
48
- with:
49
- filename: "dist/python_dbusmock-${{ github.ref_name }}.tar.gz"
+ run: |
+ VERSION="${{ github.ref_name }}"
+ git tag -l --format='%(contents:body)' $VERSION > release-note.txt
50
+
51
+ gh release create --title $VERSION --notes-file release-note.txt $VERSION \
52
+ "dist/python_dbusmock-${VERSION}.tar.gz"
53
54
- name: Create PyPy release
55
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments