Skip to content

Commit bb55069

Browse files
Fix banner bug
1 parent e1d7b74 commit bb55069

File tree

5 files changed

+64
-41
lines changed

5 files changed

+64
-41
lines changed

.github/workflows/beta.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ jobs:
5353
username: ${{ secrets.DOCKERHUB_USERNAME }}
5454
password: ${{ secrets.DOCKERHUB_TOKEN }}
5555

56+
- name: Login to Github Container registry
57+
uses: docker/login-action@v3
58+
with:
59+
registry: ghcr.io
60+
username: ${{ github.repository_owner }}
61+
password: ${{ secrets.GITHUB_TOKEN }}
62+
5663
- name: Docker Build and Push
5764
uses: docker/build-push-action@v5
5865
with:
@@ -61,4 +68,6 @@ jobs:
6168
push: true
6269
no-cache: true
6370
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8
64-
tags: mgoerentz/threadfin:${{ github.ref_name }}
71+
tags: |
72+
mgoerentz/threadfin:${{ github.ref_name }}
73+
ghcr.io/marcelgoerentz/threadfin:${{ github.ref_name }}

.github/workflows/release.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,23 @@ jobs:
5050
username: ${{ secrets.DOCKERHUB_USERNAME }}
5151
password: ${{ secrets.DOCKERHUB_TOKEN }}
5252

53+
- name: Login to Github Container registry
54+
uses: docker/login-action@v3
55+
with:
56+
registry: ghcr.io
57+
username: ${{ github.repository_owner }}
58+
password: ${{ secrets.GITHUB_TOKEN }}
59+
5360
- name: Docker Build and Push
5461
uses: docker/build-push-action@v5
5562
with:
5663
context: .
5764
push: true
5865
no-cache: true
5966
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8
60-
tags: mgoerentz/threadfin:latest,mgoerentz/threadfin:${{ github.ref_name }}
67+
tags: |
68+
mgoerentz/threadfin:latest
69+
mgoerentz/threadfin:${{ github.ref_name }}
70+
ghcr.io/marcelgoerentz/threadfin:latest
71+
ghcr.io/marcelgoerentz/threadfin:${{ github.ref_name }}
72+

0 commit comments

Comments
 (0)