Skip to content

Commit 3a1797d

Browse files
authored
Fixing the whole artifact management in whole-mapel-pub.yml
1 parent 02a8b2b commit 3a1797d

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/whole-mapel-pub.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Artifactize compiled-python wheels
8080
uses: actions/upload-artifact@v4
8181
with:
82-
name: ${{ env.MAPEL_EL_ARTS }}
82+
name: ${{ env.MAPEL_EL_ARTS }}-${{ matrix.os }}
8383
path: ${{ env.WHL_HOUSE }}
8484

8585
publish:
@@ -90,16 +90,17 @@ jobs:
9090
- uses: actions/download-artifact@v4.1.7
9191
with:
9292
path: ${{ env.WHL_HOUSE }}
93+
merge-multiple: true
9394
- name: Display structure of downloaded files
9495
run: ls -R
9596
working-directory: ${{ env.WHL_HOUSE }}
96-
- name: Prepare the distrib directory
97-
run: |
98-
mv $MAPEL_EL_ARTS/* .
99-
mv $MAPEL_REST_ARTS/* .
100-
rm -r $MAPEL_EL_ARTS
101-
rm -r $MAPEL_REST_ARTS
102-
working-directory: ${{ env.WHL_HOUSE }}
97+
# - name: Prepare the distrib directory
98+
# run: |
99+
# mv $MAPEL_EL_ARTS/* .
100+
# mv $MAPEL_REST_ARTS/* .
101+
# rm -r $MAPEL_EL_ARTS
102+
# rm -r $MAPEL_REST_ARTS
103+
# working-directory: ${{ env.WHL_HOUSE }}
103104
- name: Display all artifacts
104105
run: ls -R
105106
working-directory: ${{ env.WHL_HOUSE }}

0 commit comments

Comments
 (0)