From 615725ff54926b4175b9b30a5ac8e252dbf6302e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20R=C3=B6hrich?= Date: Mon, 13 Feb 2023 16:29:46 +0100 Subject: [PATCH] ci: fix naming of dockerfiles and workflow matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix naming issue with dockerfiles and the workflow matrix and the names of the quay.io repos, which caused the build workflow for the build and runtime environments to abort with permission errors. Signed-off-by: Moritz Röhrich --- .github/workflows/build-environment.yaml | 4 ++-- .../{Dockerfile.build-run-radosgw => Dockerfile.run-radosgw} | 0 ...e.build-run-radosgw-tests => Dockerfile.run-radosgw-tests} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tools/build/{Dockerfile.build-run-radosgw => Dockerfile.run-radosgw} (100%) rename tools/build/{Dockerfile.build-run-radosgw-tests => Dockerfile.run-radosgw-tests} (100%) diff --git a/.github/workflows/build-environment.yaml b/.github/workflows/build-environment.yaml index 684a1c60..299127ff 100644 --- a/.github/workflows/build-environment.yaml +++ b/.github/workflows/build-environment.yaml @@ -19,8 +19,8 @@ jobs: matrix: dockerfile: - build-radosgw - - build-run-radosgw - - build-run-radosgw-tests + - run-radosgw + - run-radosgw-tests steps: - name: Checkout diff --git a/tools/build/Dockerfile.build-run-radosgw b/tools/build/Dockerfile.run-radosgw similarity index 100% rename from tools/build/Dockerfile.build-run-radosgw rename to tools/build/Dockerfile.run-radosgw diff --git a/tools/build/Dockerfile.build-run-radosgw-tests b/tools/build/Dockerfile.run-radosgw-tests similarity index 100% rename from tools/build/Dockerfile.build-run-radosgw-tests rename to tools/build/Dockerfile.run-radosgw-tests