We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3baa7a commit 584aafaCopy full SHA for 584aafa
.github/workflows/multi-language-client.yml
@@ -5,6 +5,7 @@ on:
5
- master
6
- "rc/*"
7
- 'force_ci/**'
8
+ - 'cpp_client_artifact'
9
paths:
10
- 'pom.xml'
11
- 'iotdb-client/pom.xml'
@@ -101,6 +102,12 @@ jobs:
101
102
else
103
./mvnw clean verify -P with-cpp -pl iotdb-client/client-cpp,example/client-cpp-example -am
104
fi
105
+ - name: Upload Cpp Client Artifact
106
+ uses: actions/upload-artifact@v4
107
+ with:
108
+ name: client-cpp-${{ runner.os }}
109
+ path: client-cpp/target/*.zip
110
+ retention-days: 1
111
- name: Upload Artifact
112
if: failure()
113
uses: actions/upload-artifact@v4
0 commit comments