From c1bb972ac38d205652b82acba967fdf7e7c364bf Mon Sep 17 00:00:00 2001 From: Adrian Riobo Lorenzo Date: Mon, 13 May 2024 13:49:39 +0200 Subject: [PATCH] renaming Signed-off-by: Adrian Riobo Lorenzo --- .github/workflows/{build-cache.yaml => build-builder.yaml} | 6 +++--- oci/{Containerfile.cache => Containerfile.builder} | 0 oci/Containerfile.multistage | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{build-cache.yaml => build-builder.yaml} (88%) rename oci/{Containerfile.cache => Containerfile.builder} (100%) diff --git a/.github/workflows/build-cache.yaml b/.github/workflows/build-builder.yaml similarity index 88% rename from .github/workflows/build-cache.yaml rename to .github/workflows/build-builder.yaml index 5ed0de08..0b6b620a 100644 --- a/.github/workflows/build-cache.yaml +++ b/.github/workflows/build-builder.yaml @@ -1,4 +1,4 @@ -name: build-cache +name: build-builder on: push: @@ -20,10 +20,10 @@ jobs: id: build-image uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 #v2.17 with: - image: ghcr.io/${{ github.repository }}-cache + image: ghcr.io/${{ github.repository }}-builder tags: latest ${{ github.sha }} containerfiles: | - ./oci/Containerfile.cache + ./oci/Containerfile.builder - name: Push To Registry uses: redhat-actions/push-to-registry@5ed88d269cf581ea9ef6dd6806d01562096bee9c #v2.8 diff --git a/oci/Containerfile.cache b/oci/Containerfile.builder similarity index 100% rename from oci/Containerfile.cache rename to oci/Containerfile.builder diff --git a/oci/Containerfile.multistage b/oci/Containerfile.multistage index 3b7c807c..f258b06d 100644 --- a/oci/Containerfile.multistage +++ b/oci/Containerfile.multistage @@ -15,7 +15,7 @@ # # SPDX-License-Identifier: Apache-2.0 -FROM ghcr.io/crc-org/crc-extension-cache:latest AS builder +FROM ghcr.io/crc-org/crc-extension-builder:latest AS builder COPY . .