Skip to content

Commit 81b9e02

Browse files
Fix JDK Action Failure (#354)
1 parent 1f39728 commit 81b9e02

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ jobs:
4343
uses: actions/setup-java@v3
4444
with:
4545
java-version: ${{ env.JAVA_VERSION }} # The JDK version to make available on the path.
46-
java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk
47-
architecture: x64 # (x64 or x86) - defaults to x64
46+
distribution: 'adopt'
47+
# java-package: jdk # (jre, jdk, or jdk+fx) - defaults to jdk
48+
# architecture: x64 # (x64 or x86) - defaults to x64
4849

4950
- name: Build code samples
5051
run: make build

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>com.couchbase.client</groupId>
6-
<artifactId>docs-examples</artifactId>
6+
<artifactId>docs-example</artifactId>
77
<version>1.0.0</version>
88

99
<dependencyManagement>

0 commit comments

Comments
 (0)