Skip to content

Commit 2959195

Browse files
committed
Fix GitHub Actions Docker Registry credentials
1 parent 8c0b381 commit 2959195

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-deployment-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
image: docker.pkg.github.com/day8/dockerfile-for-dev-ci-image/dev-ci:0.0.13
1313
credentials:
1414
username: ${{ github.actor }}
15-
password: ${{ env.GLOBAL_TOKEN_FOR_GITHUB }}
15+
password: ${{ secrets.GLOBAL_TOKEN_FOR_GITHUB }}
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Maven cache
@@ -56,7 +56,7 @@ jobs:
5656
image: docker.pkg.github.com/day8/dockerfile-for-dev-ci-image/dev-ci:0.0.13
5757
credentials:
5858
username: ${{ github.actor }}
59-
password: ${{ env.GLOBAL_TOKEN_FOR_GITHUB }}
59+
password: ${{ secrets.GLOBAL_TOKEN_FOR_GITHUB }}
6060
steps:
6161
- uses: actions/checkout@v2
6262
with:

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
image: docker.pkg.github.com/day8/dockerfile-for-dev-ci-image/dev-ci:0.0.13
1010
credentials:
1111
username: ${{ github.actor }}
12-
password: ${{ env.GLOBAL_TOKEN_FOR_GITHUB }}
12+
password: ${{ secrets.GLOBAL_TOKEN_FOR_GITHUB }}
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Maven cache

0 commit comments

Comments
 (0)