cicd: docker login v1 is soon to be deprecated. ghcr login needed.
This commit is contained in:
parent
d89d198f96
commit
d0b7efa24c
|
|
@ -33,11 +33,18 @@ jobs:
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_KEY }}
|
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||||
|
|
||||||
|
- name: Login to ghcr
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: grpc
|
- name: grpc
|
||||||
run: make grpc
|
run: make grpc
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue