File tree Expand file tree Collapse file tree 7 files changed +25
-7
lines changed Expand file tree Collapse file tree 7 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,24 @@ jobs:
141
141
with :
142
142
ref : ${{ env.refName }}
143
143
144
+ - name : ' Download all build artifacts'
145
+ uses : actions/download-artifact@v4
146
+ with :
147
+ pattern : artifacts
148
+
149
+ - name : ' Read HEAD ref'
150
+ id : head
151
+ uses : juliangruber/read-file-action@v1
152
+ with :
153
+ path : artifacts/HEAD
154
+
155
+ - name : ' Read versions'
156
+ shell : bash
157
+ id : version
158
+ run : |
159
+ RELEASE_VERSION=`cat artifacts/RELEASE_VERSION`
160
+ echo "releaseVer = $RELEASE_VERSION" >> $GITHUB_ENV
161
+
144
162
- name : Install upx in Linux
145
163
run : sudo apt-get install upx
146
164
if : ${{ runner.os == 'Linux' }}
@@ -186,7 +204,7 @@ jobs:
186
204
name : artifacts-${{ matrix.os }}
187
205
path : |
188
206
toolkit-app/target/*.zip
189
- !toolkit-app/target/toolkit-${{ env.refName }}.zip
207
+ !toolkit-app/target/toolkit-${{ env.releaseVer }}.zip
190
208
191
209
# Collect all executables and release
192
210
release :
Original file line number Diff line number Diff line change 22
22
23
23
<groupId >iot.technology</groupId >
24
24
<artifactId >iot-toolkit</artifactId >
25
- <version >0.7.3 </version >
25
+ <version >0.7.2 </version >
26
26
<modules >
27
27
<module >toolkit-mqtt</module >
28
28
<module >toolkit-coap</module >
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<artifactId >iot-toolkit</artifactId >
24
24
<groupId >iot.technology</groupId >
25
- <version >0.7.3 </version >
25
+ <version >0.7.2 </version >
26
26
</parent >
27
27
28
28
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<artifactId >iot-toolkit</artifactId >
24
24
<groupId >iot.technology</groupId >
25
- <version >0.7.3 </version >
25
+ <version >0.7.2 </version >
26
26
</parent >
27
27
28
28
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<artifactId >iot-toolkit</artifactId >
24
24
<groupId >iot.technology</groupId >
25
- <version >0.7.3 </version >
25
+ <version >0.7.2 </version >
26
26
</parent >
27
27
28
28
<name >IoT Technology ToolKit Common</name >
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<artifactId >iot-toolkit</artifactId >
24
24
<groupId >iot.technology</groupId >
25
- <version >0.7.3 </version >
25
+ <version >0.7.2 </version >
26
26
</parent >
27
27
28
28
<artifactId >toolkit-mqtt</artifactId >
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<artifactId >iot-toolkit</artifactId >
24
24
<groupId >iot.technology</groupId >
25
- <version >0.7.3 </version >
25
+ <version >0.7.2 </version >
26
26
</parent >
27
27
<modelVersion >4.0.0</modelVersion >
28
28
You can’t perform that action at this time.
0 commit comments