Skip to content

Commit

Permalink
fix: use gradlew
Browse files Browse the repository at this point in the history
  • Loading branch information
alarv committed May 30, 2024
1 parent 13ff6a4 commit f3c9c26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
- name: Build docker image
run: |
gradle build
gradle bootBuildImage
./gradlew build
./gradlew bootBuildImage
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@v3
with:
context: .
push: true
Expand Down

0 comments on commit f3c9c26

Please sign in to comment.