Skip to content

Commit fcc1051

Browse files
committed
fix: rename build artifact
1 parent 87491ab commit fcc1051

1 file changed

Lines changed: 17 additions & 3 deletions

File tree

.github/workflows/build-rpm.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ jobs:
1919
matrix:
2020
include:
2121
- tag: aarch64_el8
22+
el: "8"
23+
arch: aarch64
2224
- tag: aarch64_el9
25+
el: "9"
26+
arch: aarch64
2327
steps:
2428
- name: Checkout repository
2529
uses: actions/checkout@v4
@@ -57,7 +61,7 @@ jobs:
5761
- name: Upload RPM artifacts
5862
uses: actions/upload-artifact@v4
5963
with:
60-
name: rpm-${{ matrix.tag }}
64+
name: rpm-el${{ matrix.el }}-${{ matrix.arch }}
6165
path: output/*.rpm
6266
if-no-files-found: ignore
6367

@@ -70,9 +74,17 @@ jobs:
7074
matrix:
7175
include:
7276
- tag: el9
77+
el: "9"
78+
arch: x86_64
7379
- tag: el8
80+
el: "8"
81+
arch: x86_64
7482
- tag: el7
83+
el: "7"
84+
arch: x86_64
7585
- tag: el6
86+
el: "6"
87+
arch: x86_64
7688
steps:
7789
- name: Checkout repository
7890
uses: actions/checkout@v4
@@ -107,7 +119,7 @@ jobs:
107119
- name: Upload RPM artifacts
108120
uses: actions/upload-artifact@v4
109121
with:
110-
name: rpm-${{ matrix.tag }}
122+
name: rpm-el${{ matrix.el }}-${{ matrix.arch }}
111123
path: output/*.rpm
112124
if-no-files-found: ignore
113125

@@ -120,8 +132,10 @@ jobs:
120132
matrix:
121133
include:
122134
- m32: "0"
135+
el: "5"
123136
arch: x86_64
124137
- m32: "1"
138+
el: "5"
125139
arch: i686
126140
steps:
127141
- name: Checkout repository
@@ -158,7 +172,7 @@ jobs:
158172
- name: Upload RPM artifacts
159173
uses: actions/upload-artifact@v4
160174
with:
161-
name: rpm-el5-${{ matrix.arch }}
175+
name: rpm-el${{ matrix.el }}-${{ matrix.arch }}
162176
path: output/*.rpm
163177
if-no-files-found: ignore
164178

0 commit comments

Comments
 (0)