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 1b0bb66 commit 43a3392Copy full SHA for 43a3392
.github/workflows/main.yml
@@ -34,3 +34,19 @@ jobs:
34
35
- name: Build with Maven
36
run: mvn clean package -DskipTests
37
+
38
+ - name: Login to JFrog Artifactory
39
+ uses: docker/login-action@v2
40
+ with:
41
+ registry: trialktyenb.jfrog.io
42
+ username: ${{ secrets.JFROG_USERNAME }}
43
+ password: ${{ secrets.JFROG_PASSWORD }
44
45
+ - name: Build and push Docker image
46
+ uses: docker/build-push-action@v3
47
48
+ context: .
49
+ push: true
50
+ tags: |
51
+ trialktyenb.jfrog.io/docker-repo/myimage:${{ steps.get-version.outputs.version }}
52
0 commit comments