@@ -108,6 +108,14 @@ jobs:
108
108
./docker/test-docker-release.sh --distro ubuntu --versions ${{ matrix.os }} --rocm-versions ${CI_ROCM_VERSION} -- --stgz ${i}
109
109
done
110
110
111
+ - name : Upload STGZ Release Assets
112
+ uses : softprops/action-gh-release@v1
113
+ if : startsWith(github.ref, 'refs/tags/') && github.repository == 'AMDResearch/omnitrace'
114
+ with :
115
+ fail_on_unmatched_files : True
116
+ files : |
117
+ omnitrace-*.sh
118
+
111
119
- name : Test DEB Install
112
120
timeout-minutes : 20
113
121
run : |
@@ -117,13 +125,13 @@ jobs:
117
125
./docker/test-docker-release.sh --distro ubuntu --versions ${{ matrix.os }} --rocm-versions ${CI_ROCM_VERSION} -- --deb ${i}
118
126
done
119
127
120
- - name : Upload Release Assets
128
+ - name : Upload DEB Release Assets
121
129
uses : softprops/action-gh-release@v1
122
130
if : startsWith(github.ref, 'refs/tags/') && github.repository == 'AMDResearch/omnitrace'
123
131
with :
132
+ fail_on_unmatched_files : True
124
133
files : |
125
- build-release/stgz/*.sh
126
- build-release/deb/*.deb
134
+ omnitrace_*.deb
127
135
128
136
opensuse :
129
137
runs-on : ubuntu-20.04
@@ -209,6 +217,14 @@ jobs:
209
217
./docker/test-docker-release.sh --distro opensuse --versions ${{ matrix.os }} --rocm-versions ${CI_ROCM_VERSION} -- --stgz ${i}
210
218
done
211
219
220
+ - name : Upload STGZ Release Assets
221
+ uses : softprops/action-gh-release@v1
222
+ if : startsWith(github.ref, 'refs/tags/') && github.repository == 'AMDResearch/omnitrace'
223
+ with :
224
+ fail_on_unmatched_files : True
225
+ files : |
226
+ omnitrace-*.sh
227
+
212
228
- name : Test RPM Install
213
229
timeout-minutes : 20
214
230
run : |
@@ -218,10 +234,10 @@ jobs:
218
234
./docker/test-docker-release.sh --distro opensuse --versions ${{ matrix.os }} --rocm-versions ${CI_ROCM_VERSION} -- --rpm ${i}
219
235
done
220
236
221
- - name : Upload Release Assets
237
+ - name : Upload RPM Release Assets
222
238
uses : softprops/action-gh-release@v1
223
239
if : startsWith(github.ref, 'refs/tags/') && github.repository == 'AMDResearch/omnitrace'
224
240
with :
241
+ fail_on_unmatched_files : True
225
242
files : |
226
- build-release/stgz/*.sh
227
- build-release/rpm/*.rpm
243
+ omnitrace-*.rpm
0 commit comments