We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae876ac commit b25c4e0Copy full SHA for b25c4e0
3 files changed
.github/workflows/github-release.yml
@@ -21,6 +21,12 @@ jobs:
21
name: Source Tarball
22
path: dist
23
24
+ - name: Download Python Build Artifacts
25
+ uses: actions/download-artifact@v4
26
+ with:
27
+ name: Python Wheel
28
+ path: dist
29
+
30
- name: Create Release
31
id: create_release
32
uses: actions/create-release@v1
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+0.20.10
2
+=======
3
4
+* Fix github release pipeline.
5
6
7
0.20.9
8
======
9
relenv/common.py
@@ -18,7 +18,7 @@
18
import time
19
20
# relenv package version
-__version__ = "0.20.9"
+__version__ = "0.20.10"
MODULE_DIR = pathlib.Path(__file__).resolve().parent
0 commit comments