Skip to content

Commit 00a008e

Browse files
committed
Improve docker image names
1 parent b5e03cc commit 00a008e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/debian.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Convert the repository name to lowercase as the organization name is
2929
# uppercase, which is not permitted by the Docker registry.
3030
DOCKER_REPOSITORY=${GITHUB_REPOSITORY,,}
31-
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}" >> $GITHUB_ENV
31+
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/debian-${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}" >> $GITHUB_ENV
3232
- name: Build the Docker image
3333
working-directory: docker/debian
3434
run: |
@@ -67,7 +67,7 @@ jobs:
6767
# Convert the repository name to lowercase as the organization name is
6868
# uppercase, which is not permitted by the Docker registry.
6969
DOCKER_REPOSITORY=${GITHUB_REPOSITORY,,}
70-
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${{ matrix.version.os }}:clang${{ matrix.version.clang }}" >> $GITHUB_ENV
70+
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/debian-${{ matrix.version.os }}:clang${{ matrix.version.clang }}" >> $GITHUB_ENV
7171
- name: Build the Docker image
7272
working-directory: docker/debian
7373
run: |

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Convert the repository name to lowercase as the organization name is
3333
# uppercase, which is not permitted by the Docker registry.
3434
DOCKER_REPOSITORY=${GITHUB_REPOSITORY,,}
35-
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}" >> $GITHUB_ENV
35+
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/ubuntu-${{ matrix.version.os }}:gcc${{ matrix.version.gcc }}" >> $GITHUB_ENV
3636
- name: Build the Docker image
3737
working-directory: docker/ubuntu
3838
run: |
@@ -69,7 +69,7 @@ jobs:
6969
# Convert the repository name to lowercase as the organization name is
7070
# uppercase, which is not permitted by the Docker registry.
7171
DOCKER_REPOSITORY=${GITHUB_REPOSITORY,,}
72-
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${{ matrix.version.os }}:clang${{ matrix.version.clang }}" >> $GITHUB_ENV
72+
echo "DOCKER_IMAGE=${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/ubuntu-${{ matrix.version.os }}:clang${{ matrix.version.clang }}" >> $GITHUB_ENV
7373
- name: Build the Docker image
7474
working-directory: docker/ubuntu
7575
run: |

0 commit comments

Comments
 (0)