Skip to content

Commit 1b8a3c3

Browse files
committed
use default token
1 parent 2834568 commit 1b8a3c3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build_test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
repository: ${{ steps.docker-environment.outputs.repository }}
2121
source_branch: ${{ steps.github-environment.outputs.source_branch }}
2222
target_branch: ${{ steps.github-environment.outputs.target_branch }}
23-
23+
2424
steps:
2525
- name: Checkout Repository
2626
uses: actions/checkout@v4
@@ -78,12 +78,13 @@ jobs:
7878
uses: docker/setup-buildx-action@v3
7979
id: buildx
8080

81+
# uses default token right now
8182
- name: Docker Login
8283
uses: docker/login-action@v3
8384
with:
8485
registry: ${{ env.DOCKER_REGISTRY }}
85-
username: ${{ secrets.GHCR_USER }}
86-
password: ${{ secrets.GHCR_PWD }}
86+
username: ${{ github.actor }}
87+
password: ${{ secrets.GITHUB_TOKEN }}
8788

8889
- name: Prepare Image Dependencies
8990
if: ${{ matrix.module != 'infrastructure' }}

0 commit comments

Comments
 (0)