Push docker images to GitHub Container Registry too
parent
0b7113d04c
commit
1d064f46e4
|
@ -171,6 +171,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
username: mlocati
|
username: mlocati
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Login to GitHub Container Registry
|
||||||
|
if: env.VERSIONTAG_THIS != ''
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
-
|
-
|
||||||
name: Set up docker buildx
|
name: Set up docker buildx
|
||||||
if: env.VERSIONTAG_THIS != ''
|
if: env.VERSIONTAG_THIS != ''
|
||||||
|
|
Loading…
Reference in New Issue