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.
2 parents 6e0495e + 9cf1e9c commit 28a9636Copy full SHA for 28a9636
.github/workflows/deploy.yml
@@ -34,6 +34,7 @@ jobs:
34
- name: Publish package to PyPI
35
uses: pypa/[email protected]
36
37
- - uses: actions-ecosystem/action-push-tag@v1
38
- with:
39
- tag: ${{ github.event.inputs.version }}
+ - name: Push tag
+ run: |
+ git tag ${{ github.event.inputs.version }} ${{ github.sha }}
40
+ git push origin ${{ github.event.inputs.version }}
CHANGELOG.rst
@@ -1,4 +1,4 @@
1
-0.3.0 (UNRELEASED)
+0.3.0 (2023-04-26)
2
------------------
3
4
* `#20 <https://github.com/pytest-dev/pytest-reportlog/issues/20>`_: Warnings are now included in the logs.
0 commit comments