Skip to content

Commit d61c9ce

Browse files
committed
debug output
1 parent 0348fdb commit d61c9ce

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.github/workflows/release.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff 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
uses: actions/[email protected]
@@ -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:

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ jar {
113113
duplicatesStrategy = DuplicatesStrategy.WARN
114114
}
115115

116+
sourcesJar {
117+
dependsOn buildH3
118+
}
119+
116120
publishing {
117121
publications {
118122
mavenJava(MavenPublication) {

0 commit comments

Comments
 (0)