We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd6a89 commit df903a2Copy full SHA for df903a2
.github/workflows/dockerhub.yml
@@ -27,6 +27,13 @@ jobs:
27
with:
28
username: ${{ secrets.DOCKERHUB_USERNAME }}
29
password: ${{ secrets.DOCKERHUB_TOKEN }}
30
+ -
31
+ name: Login to GHCR
32
+ uses: docker/login-action@v2
33
+ with:
34
+ registry: ghcr.io
35
+ username: ${{ github.actor }}
36
+ password: ${{ github.token }}
37
-
38
name: Set tag name
39
run: |
@@ -40,5 +47,7 @@ jobs:
40
47
uses: docker/build-push-action@v3
41
48
42
49
push: true
43
- tags: b4bz/homer:${{env.IMAGE_TAG}}
44
- platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
50
+ tags: |
51
+ b4bz/homer:${{env.IMAGE_TAG}}
52
+ ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}
53
+ platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
0 commit comments