Skip to content

Commit

Permalink
ci: doesn't auth on Docker Hub
Browse files Browse the repository at this point in the history
  • Loading branch information
splix committed Jan 20, 2024
1 parent 4e02636 commit 45d8a9e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 17
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_KEY }}
- name: Check
uses: eskatos/gradle-command-action@v1
with:
Expand All @@ -23,8 +28,6 @@ jobs:
uses: eskatos/gradle-command-action@v1
with:
arguments: jib
env:
DOCKER_KEY: ${{ secrets.DOCKER_KEY }}

publish-github:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 45d8a9e

Please sign in to comment.