Skip to content

Commit

Permalink
feat: gradle.yml에 Docker build 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepelown authored Dec 2, 2024
1 parent 133f2d4 commit 89feb72
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,13 @@ jobs:
cd wabi
ls
./gradlew clean build -x test
- name: Docker build
run: |
docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }}
docker build -t seongwonyoon/wabi .
docker tag wabi seongwonyoon/wabi:${GITHUB_SHA::7}
docker push seongwonyoon/wabi:${GITHUB_SHA::7}

0 comments on commit 89feb72

Please sign in to comment.