Skip to content

Commit

Permalink
fix: docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
k.mesniankin committed Oct 5, 2024
1 parent e7458f5 commit 007b939
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ jobs:
# setup docker buildx
- name: Setup docker buildx
uses: docker/setup-buildx-action@v3
# login docker
- name: Login to docker registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# build and push
- name: Build and push
uses: docker/build-push-action@v6
Expand Down

0 comments on commit 007b939

Please sign in to comment.