Skip to content

Commit ed64c8d

Browse files
committed
chore: pull docker image from vars
1 parent 5f55a25 commit ed64c8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Pull KurrentDB Image
4848
shell: bash
4949
run: |
50-
docker pull docker.kurrent.io/${{ inputs.docker-image }}:${{ inputs.docker-tag }}
50+
docker pull ${{ inputs.docker-image }}
5151
- name: Install dotnet SDKs
5252
uses: actions/setup-dotnet@v3
5353
with:
@@ -58,7 +58,7 @@ jobs:
5858
shell: bash
5959
env:
6060
ES_DOCKER_TAG: ${{ inputs.docker-tag }}
61-
ES_DOCKER_REGISTRY: docker.kurrent.io/${{ inputs.docker-image }}
61+
ES_DOCKER_REGISTRY: ${{ inputs.docker-image }}
6262
run: |
6363
sudo ./gencert.sh
6464
dotnet test --configuration ${{ matrix.configuration }} --blame \

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Test CE (${{ matrix.docker-tag }})
2020
with:
2121
docker-tag: ${{ matrix.docker-tag }}
22-
docker-image: eventstore-ce/eventstoredb-ce
22+
docker-image: ${{ fromJSON(vars.KURRENTDB_DOCKER_IMAGES)[matrix.docker-tag].fullname }}
2323
test: ${{ matrix.test }}
2424
ee:
2525
uses: ./.github/workflows/base.yml
@@ -32,7 +32,7 @@ jobs:
3232
name: Test EE (${{ matrix.docker-tag }})
3333
with:
3434
docker-tag: ${{ matrix.docker-tag }}
35-
docker-image: eventstore-ee/eventstoredb-commercial
35+
docker-image: docker.kurrent.io/eventstore-ee/eventstoredb-commercial:${{ matrix.docker-tag }}
3636
test: ${{ matrix.test }}
3737
secrets:
3838
CLOUDSMITH_CICD_USER: ${{ secrets.CLOUDSMITH_CICD_USER }}

0 commit comments

Comments
 (0)