Skip to content

Commit

Permalink
Use docker/login-action@v1
Browse files Browse the repository at this point in the history
  • Loading branch information
superbrothers committed Apr 18, 2022
1 parent ee57090 commit b253e7c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
run: echo "$GITHUB_TOKEN" | docker login ghcr.io --username "$GITHUB_ACTOR" --password-stdin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: make docker-build-all
- run: make push-all

0 comments on commit b253e7c

Please sign in to comment.