File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
actions/build-and-deploy-quarkus-jvm Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11name : Build and Deploy Quarkus JVM Image
22description : Build and deploy Quarkus JVM image to DockerHub
33inputs :
4+ docker-username :
5+ description : User name to log into registry
6+ required : true
7+ docker-password :
8+ description : Password to log into registry
9+ required : true
410 image-name :
511 description : Docker image name
612 required : true
2430 -Dquarkus.container-image.push=true \
2531 -Dquarkus.container-image.name=${{ inputs.image-name }} \
2632 -Dquarkus.container-image.tag=${{ inputs.image-tag }} \
27- -Dquarkus.container-image.username=${{ secrets.DOCKER_USERNAME }} \
28- -Dquarkus.container-image.password=${{ secrets.DOCKER_PASSWORD }}
33+ -Dquarkus.container-image.username=${{ inputs.docker-username }} \
34+ -Dquarkus.container-image.password=${{ inputs.docker-password }}
Original file line number Diff line number Diff line change @@ -219,5 +219,7 @@ jobs:
219219 - name : Build and Push Image
220220 uses : ./.github/actions/build-and-deploy-quarkus-jvm
221221 with :
222+ docker-username : ${{ secrets.DOCKER_USERNAME }}
223+ docker-password : ${{ secrets.DOCKER_PASSWORD }}
222224 image-name : explorviz/span-service-jvm
223225 image-tag : ${{ matrix.arch }}
You can’t perform that action at this time.
0 commit comments