Skip to content

Commit 8d87ecf

Browse files
committed
Fix download artifact
1 parent 3e9cdc4 commit 8d87ecf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/github-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
2424
name: Python Wheel
2525
path: dist
2626

27-
- name: Download Artifacts
28-
uses: actions/download-artifact@v4
29-
with:
30-
name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz
31-
path: release-artifacts/
3227

3328
- name: Create Release
3429
id: create_release
@@ -147,6 +142,11 @@ jobs:
147142
arch: arm64
148143
python: 3.13.0
149144
steps:
145+
- name: Download Artifacts
146+
uses: actions/download-artifact@v4
147+
with:
148+
name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz
149+
path: release-artifacts/
150150
- name: Upload ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz
151151
id: upload-python-build-assets
152152
uses: actions/upload-release-asset@v1

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.17.400000"
21+
__version__ = "0.17.400001"
2222

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

0 commit comments

Comments
 (0)