Skip to content

Commit ae876ac

Browse files
committed
Fix wart in github release pipeline
1 parent d57016a commit ae876ac

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/workflows/github-release.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
outputs:
1515
url: ${{ steps.output_url.outputs.url }}
16-
version: ${{ steps.python-version.outputs.version }}
1716
steps:
18-
- name: Download Python Build Artifacts
19-
uses: actions/download-artifact@v4
20-
with:
21-
name: Source Tarball
22-
path: dist
2317

2418
- name: Download Python Build Artifacts
2519
uses: actions/download-artifact@v4
2620
with:
27-
name: Python Wheel
21+
name: Source Tarball
2822
path: dist
2923

30-
3124
- name: Create Release
3225
id: create_release
3326
uses: actions/create-release@v1
@@ -160,7 +153,7 @@ jobs:
160153
- name: Determine Python Version
161154
id: python-version
162155
run: |
163-
echo "version=$(python3 -m relenv versions --version=${{ matrix.version }})" | tee -a "$GITHUB_OUTPUT"
156+
echo "version=$(python3 -m relenv versions --version=${{ matrix.python }})" | tee -a "$GITHUB_OUTPUT"
164157
165158
- name: Download Artifacts
166159
uses: actions/download-artifact@v4

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.20.9
2+
======
3+
4+
* Fix github release pipeline.
5+
6+
17
0.20.8
28
======
39

relenv/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import time
1919

2020
# relenv package version
21-
__version__ = "0.20.8"
21+
__version__ = "0.20.9"
2222

2323
MODULE_DIR = pathlib.Path(__file__).resolve().parent
2424

0 commit comments

Comments
 (0)