Skip to content

Commit 8c0b381

Browse files
committed
Change GitHub Actions Docker registry to GitHub Packages
1 parent c365b61 commit 8c0b381

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ jobs:
99
name: Test
1010
runs-on: ubuntu-18.04
1111
container:
12-
image: day8au/dev-ci:0.0.8
12+
image: docker.pkg.github.com/day8/dockerfile-for-dev-ci-image/dev-ci:0.0.13
13+
credentials:
14+
username: ${{ github.actor }}
15+
password: ${{ env.GLOBAL_TOKEN_FOR_GITHUB }}
1316
steps:
1417
- uses: actions/checkout@v2
1518
- name: Maven cache
@@ -50,7 +53,10 @@ jobs:
5053
needs: test
5154
runs-on: ubuntu-18.04
5255
container:
53-
image: day8au/dev-ci:0.0.8
56+
image: docker.pkg.github.com/day8/dockerfile-for-dev-ci-image/dev-ci:0.0.13
57+
credentials:
58+
username: ${{ github.actor }}
59+
password: ${{ env.GLOBAL_TOKEN_FOR_GITHUB }}
5460
steps:
5561
- uses: actions/checkout@v2
5662
with:

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ jobs:
66
name: Test
77
runs-on: ubuntu-18.04
88
container:
9-
image: day8au/dev-ci:0.0.8
9+
image: docker.pkg.github.com/day8/dockerfile-for-dev-ci-image/dev-ci:0.0.13
10+
credentials:
11+
username: ${{ github.actor }}
12+
password: ${{ env.GLOBAL_TOKEN_FOR_GITHUB }}
1013
steps:
1114
- uses: actions/checkout@v2
1215
- name: Maven cache

0 commit comments

Comments
 (0)