Skip to content

Commit c2a9932

Browse files
committed
fix(pu): fix release.yml
1 parent 617f164 commit c2a9932

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
run: |
3939
make zip
4040
ls -al dist
41-
- name: Upload packed files to artifacts (source)
42-
uses: actions/upload-artifact@v4
41+
- name: Upload packed files to artifacts
42+
uses: actions/upload-artifact@v2
4343
with:
44-
name: build-artifacts-wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.architecture }}
44+
name: build-artifacts-all
4545
path: ./dist/*
4646

4747
wheel_build:
@@ -102,10 +102,10 @@ jobs:
102102
run: |
103103
ls -al ./wheelhouse
104104
mv wheelhouse dist
105-
- name: Upload packed files to artifacts (wheels)
106-
uses: actions/upload-artifact@v4
105+
- name: Upload packed files to artifacts
106+
uses: actions/upload-artifact@v2
107107
with:
108-
name: build-artifacts-wheels
108+
name: build-artifacts-all
109109
path: ./dist/*
110110

111111
# the publishing can only be processed on linux system
@@ -125,7 +125,7 @@ jobs:
125125
- name: Download packed files to artifacts
126126
uses: actions/download-artifact@v3
127127
with:
128-
name: build-artifacts-wheels
128+
name: build-artifacts-all
129129
path: ./dist
130130
- name: Show the buildings
131131
shell: bash

0 commit comments

Comments
 (0)