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 2a8f91c commit 43f5701Copy full SHA for 43f5701
.github/workflows/CI.yml
@@ -74,8 +74,9 @@ jobs:
74
})
75
76
77
- - name: Build and analyze
78
- env:
79
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
80
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
81
- run: ./gradlew build sonar --info
+ - name: 도커 빌드및 Push
+ run: |
+ echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin
+ docker build -t 7zrv/somemore:${GITHUB_SHA::7} -t 7zrv/somemore:latest .
+ docker push 7zrv/somemore:${GITHUB_SHA::7}
82
+ docker push 7zrv/somemore:latest
0 commit comments