Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 3e2f2b3

Browse files
committed
Fix ghcr.io logins
1 parent e2c24b9 commit 3e2f2b3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build_docker_tagged.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
with:
2222
username: ${{ secrets.DOCKER_USERNAME }}
2323
password: ${{ secrets.DOCKER_PASSWORD }}
24+
- name: Log in to the Github Container registry
25+
uses: docker/login-action@v2
26+
with:
27+
registry: ghcr.io
28+
username: ${{ github.actor }}
29+
password: ${{ secrets.GITHUB_TOKEN }}
2430
-
2531
name: Checkout repository
2632
uses: actions/checkout@v2
@@ -64,6 +70,12 @@ jobs:
6470
with:
6571
username: ${{ secrets.DOCKER_USERNAME }}
6672
password: ${{ secrets.DOCKER_PASSWORD }}
73+
- name: Log in to the Github Container registry
74+
uses: docker/login-action@v2
75+
with:
76+
registry: ghcr.io
77+
username: ${{ github.actor }}
78+
password: ${{ secrets.GITHUB_TOKEN }}
6779
-
6880
name: Checkout repository
6981
uses: actions/checkout@v2

0 commit comments

Comments
 (0)