File tree Expand file tree Collapse file tree 2 files changed +18
-6
lines changed
Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -160,11 +160,11 @@ jobs:
160160 git config user.email "[email protected]"
161161 git commit -am "chore: release $RELEASE_VERSION [skip ci]"
162162
163- # - name: Create Git tag for release
164- # if: ${{ github.event_name == 'workflow_dispatch' }}
165- # run: |
166- # git tag -a "v${RELEASE_VERSION}" -m "Release $RELEASE_VERSION"
167- # git push origin HEAD:main --follow-tags
163+ - name : Create Git tag for release
164+ if : ${{ github.event_name == 'workflow_dispatch' }}
165+ run : |
166+ git tag -a "v${RELEASE_VERSION}" -m "Release $RELEASE_VERSION"
167+ git push origin HEAD:main --follow-tags
168168
169169 - name : Download Docker binaries
170170@@ -181,7 +181,15 @@ jobs:
181181
182182 - name : Download and test
183183 run : |
184- ./gradlew clean test -Ph3GithubArtifactsUse=true -Ph3GithubArtifactsByRun=true
184+ ./gradlew clean test assemble -Ph3GithubArtifactsUse=true -Ph3GithubArtifactsByRun=true
185+
186+ - name : WIP test
187+ run : |
188+ ls -lh build/libs
189+ for f in build/libs/*.jar; do
190+ echo "File: $f"
191+ unzip -l "$f"
192+ done
185193
186194 # - name: Publish to Sonatype OSSRH (Maven Central)
187195 # env:
Original file line number Diff line number Diff line change @@ -113,6 +113,10 @@ jar {
113113 duplicatesStrategy = DuplicatesStrategy . WARN
114114}
115115
116+ sourcesJar {
117+ dependsOn buildH3
118+ }
119+
116120publishing {
117121 publications {
118122 mavenJava(MavenPublication ) {
You can’t perform that action at this time.
0 commit comments