Skip to content

Commit 0aa527d

Browse files
committed
[python-conprof] fix artifact download path
1 parent 54d6458 commit 0aa527d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/release_prod.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ jobs:
4444
uses: actions/upload-artifact@v4
4545
with:
4646
name: wheel_dist
47-
path: |
48-
wheel_dist/*
47+
path: ./wheel_dist
4948

5049
release:
5150
name: Release
@@ -55,6 +54,8 @@ jobs:
5554
- uses: actions/checkout@v5
5655
- name: Download build artifacts
5756
uses: actions/download-artifact@v5
57+
with:
58+
name: wheel_dist
5859
- run: |
5960
sudo pip install twine
6061
./scripts/releasing/release.sh wheel_dist

.github/workflows/release_staging.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
uses: actions/upload-artifact@v4
4545
with:
4646
name: wheel_dist
47-
path: |
48-
wheel_dist/*
47+
path: ./wheel_dist
48+
4949
release:
5050
name: Release
5151
runs-on: ubuntu-latest
@@ -54,6 +54,8 @@ jobs:
5454
- uses: actions/checkout@v5
5555
- name: Download build artifacts
5656
uses: actions/download-artifact@v5
57+
with:
58+
name: wheel_dist
5759
- run: |
5860
sudo pip install twine
5961
./scripts/releasing/release.sh wheel_dist

0 commit comments

Comments
 (0)