Skip to content

Commit 36f60a5

Browse files
authored
Merge pull request #496 from johscheuer/correct-image-name
Correct image name for DockerHub
2 parents 562e31f + 537ebb1 commit 36f60a5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/master.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
include:
1717
- image: fdb-kubernetes-operator
1818
context: ./
19+
name: foundationdb/fdb-kubernetes-operator
1920
- image: fdb-data-loader
2021
context: ./sample-apps/data-loader
22+
name: foundationdb/fdb-data-loader
2123
steps:
2224
- name: Check out the repo
2325
uses: actions/checkout@v2
@@ -33,4 +35,4 @@ jobs:
3335
with:
3436
push: true
3537
context: ${{ matrix.context }}
36-
tags: ${{ github.repository }}/${{ matrix.image }}:latest
38+
tags: ${{ matrix.name }}:latest

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,10 @@ jobs:
102102
include:
103103
- image: fdb-kubernetes-operator
104104
context: ./
105+
name: foundationdb/fdb-kubernetes-operator
105106
- image: fdb-data-loader
106107
context: ./sample-apps/data-loader
108+
name: foundationdb/fdb-data-loader
107109
steps:
108110
- name: Check out the repo
109111
uses: actions/checkout@v2
@@ -122,4 +124,4 @@ jobs:
122124
with:
123125
push: true
124126
context: ${{ matrix.context }}
125-
tags: ${{ github.repository }}/${{ matrix.image }}:${{ steps.get_tag.outputs.TAG }}
127+
tags: ${{ matrix.name }}:${{ steps.get_tag.outputs.TAG }}

0 commit comments

Comments
 (0)