Skip to content

Commit dc1e2f9

Browse files
authored
Merge pull request #37 from sanshengshui/develop-0.7.3
convert toolkit-coap to 0.7.2
2 parents fe7399d + a44c717 commit dc1e2f9

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
lines changed

.github/workflows/release.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ jobs:
185185
with:
186186
name: artifacts-${{ matrix.os }}
187187
path: |
188-
toolkit-app/target/toolkit-app*.zip
189-
!toolkit-app/target/toolkit-app-${{ env.refName }}.jar
188+
toolkit-app/target/*.zip
189+
!toolkit-app/target/toolkit-${{ env.refName }}.zip
190190
191191
# Collect all executables and release
192192
release:
@@ -211,11 +211,10 @@ jobs:
211211
path: all-artifacts
212212

213213
- name: 'Merge all artifacts'
214+
shell: bash
214215
run: |
215-
mkdir merged-artifact
216-
for /d %%D in (all-artifacts\*) do (
217-
xcopy /E /I "%%D" merged-artifact\
218-
)
216+
mkdir -p merged-artifact
217+
cp -r all-artifacts/*/* merged-artifact/
219218
220219
- name: Upload merged artifact
221220
uses: actions/upload-artifact@v4

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>iot.technology</groupId>
2424
<artifactId>iot-toolkit</artifactId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
<modules>
2727
<module>toolkit-mqtt</module>
2828
<module>toolkit-coap</module>

toolkit-app/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828

toolkit-coap/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828

toolkit-common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828
<name>IoT Technology ToolKit Common</name>

toolkit-mqtt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828
<artifactId>toolkit-mqtt</artifactId>

toolkit-nbiot/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

0 commit comments

Comments
 (0)