jbonofre commented on code in PR #1593:
URL: https://github.com/apache/polaris/pull/1593#discussion_r2095751131


##########
.github/workflows/nightly.yml:
##########
@@ -60,3 +60,19 @@ jobs:
         env:
           ORG_GRADLE_PROJECT_apacheUsername: ${{ secrets.NEXUS_USER }}
           ORG_GRADLE_PROJECT_apachePassword: ${{ secrets.NEXUS_PW }} 
+      - name: Docker login
+        uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a #v3
+        with:
+          username: ${{ secrets.DOCKERHUB_USER }}
+          password: ${{ secrets.DOCKERHUB_TOKEN }}
+      - name: Build Docker images
+        run: |
+          ./gradlew \
+            :polaris-quarkus-server:assemble \
+            :polaris-quarkus-server:quarkusAppPartsBuild --rerun \
+            :polaris-quarkus-admin:assemble \
+            :polaris-quarkus-admin:quarkusAppPartsBuild --rerun \
+            -Dquarkus.container-image.build=true \
+      - name: Push Docker images to Docker HUB
+        run: |
+          docker push apache/polaris

Review Comment:
   By the way, in `apache` DockerHub scope, we can only have `polaris` as image 
name for now. We can ask to create another `apache/polaris-admin-tool` repo. 
However, I think it's fine to use tag/version like `admin-tool-xxxx`. It's what 
I'm doing for the release for now.
   OK ?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to