Skip to content

Commit 5580a35

Browse files
authored
Merge pull request #35 from sanshengshui/develop-0.7.3
update release.yml
2 parents 0e9cb7e + 478f27d commit 5580a35

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/release.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
*_VERSION
7878
7979
create_binaries:
80+
needs: [ version ]
8081
runs-on: ubuntu-latest
8182
steps:
8283
- name: 'Set up JDK'
@@ -117,8 +118,8 @@ jobs:
117118
path: toolkit-app/target/*.zip
118119

119120
# Build native executable per runner
120-
build:
121-
needs: [ version ]
121+
create_native_binaries:
122+
needs: [ version, create_binaries]
122123
name: 'Build with Graal on ${{ matrix.os }}'
123124
strategy:
124125
fail-fast: true
@@ -189,7 +190,7 @@ jobs:
189190
190191
# Collect all executables and release
191192
release:
192-
needs: [ build ]
193+
needs: [ create_native_binaries ]
193194
runs-on: windows-latest
194195

195196
steps:

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-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)