@@ -79,12 +79,11 @@ jobs:
79
79
tar -zcf dist/$AGENT-${PKG_VERSION}-linux-$ARCH.tar.gz -C build/ $AGENT-linux-$ARCH
80
80
done
81
81
- name : Upload artifacts
82
- uses : actions/upload-artifact@v4
82
+ uses : actions/upload-artifact@v3
83
83
with :
84
84
name : binaries
85
85
path : dist/
86
86
retention-days : 7
87
- overwrite : true
88
87
- name : Export version
89
88
id : export-version
90
89
env :
@@ -113,7 +112,7 @@ jobs:
113
112
- name : Checkout code
114
113
uses : actions/checkout@v4
115
114
- name : Download binaries
116
- uses : actions/download-artifact@v4
115
+ uses : actions/download-artifact@v3
117
116
with :
118
117
name : binaries
119
118
path : dist
@@ -130,13 +129,12 @@ jobs:
130
129
.\wix311\candle.exe -arch x64 "-dVERSION=$Env:VERSION" xk6disruptor.wxs
131
130
.\wix311\light.exe -ext WixUIExtension -o "$Env:PKGNAME.msi" xk6disruptor.wixobj
132
131
- name : Upload artifacts
133
- uses : actions/upload-artifact@v4
132
+ uses : actions/upload-artifact@v3
134
133
with :
135
134
name : binaries
136
135
path : |
137
136
packaging/*.msi
138
137
retention-days : 7
139
- overwrite : true
140
138
141
139
publish-images :
142
140
runs-on : ubuntu-latest
@@ -155,7 +153,7 @@ jobs:
155
153
echo "PKG_VERSION=${{needs.build-binaries.outputs.pkg_version}}" >> $GITHUB_ENV
156
154
echo "IMAGE_VERSION=${{needs.build-binaries.outputs.image_version}}" >> $GITHUB_ENV
157
155
- name : Download binaries
158
- uses : actions/download-artifact@v4
156
+ uses : actions/download-artifact@v3
159
157
with :
160
158
name : binaries
161
159
path : dist
@@ -203,11 +201,10 @@ jobs:
203
201
- name : Checkout code
204
202
uses : actions/checkout@v4
205
203
- name : Download binaries
206
- uses : actions/download-artifact@v4
204
+ uses : actions/download-artifact@v3
207
205
with :
208
206
name : binaries
209
207
path : dist
210
- merge-multiple : true
211
208
- name : Generate checksum file
212
209
env :
213
210
VERSION : ${{ env.VERSION }}
0 commit comments