We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a11aa1 commit b2fd83aCopy full SHA for b2fd83a
.github/workflows/build-package.yml
@@ -43,6 +43,15 @@ jobs:
43
BUILDER=buildx-multi-arch
44
docker buildx inspect $BUILDER || docker buildx create --name=$BUILDER --driver=docker-container --driver-opt=network=host
45
46
+ - name: Set up JDK 17 for x64
47
+ #if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
48
+ uses: actions/setup-java@v3
49
+ with:
50
+ java-version: '17'
51
+ distribution: 'temurin'
52
+ architecture: x64
53
+ cache: maven
54
+
55
- name: Build and push container image
56
#if: github.repository_owner == 'microcks' && steps.changes.outputs.grpc-hello-world == 'true'
57
run: |
0 commit comments