diff --git a/.github/workflows/reusable-build.yaml b/.github/workflows/reusable-build.yaml index 407bea4..11c3018 100644 --- a/.github/workflows/reusable-build.yaml +++ b/.github/workflows/reusable-build.yaml @@ -28,7 +28,7 @@ jobs: fedora_version: - ${{ inputs.fedora_version }} image_name: - - bootc + - base steps: # Checkout push-to-registry action GitHub repository @@ -38,7 +38,7 @@ jobs: - name: Matrix Variables shell: bash run: | - echo "IMAGE_NAME=${{ matrix.image_name }}-main" >> $GITHUB_ENV + echo "IMAGE_NAME=${{ matrix.image_name }}-bootc" >> $GITHUB_ENV - name: Generate tags id: generate-tags @@ -130,7 +130,7 @@ jobs: labels: | org.opencontainers.image.title=${{ env.IMAGE_NAME }} org.opencontainers.image.version=${{ env.SOURCE_IMAGE_VERSION }} - org.opencontainers.image.description=A base Universal Blue ${{ matrix.image_name }} image with batteries included + org.opencontainers.image.description=A base Universal Blue ${{ matrix.image_name }}-bootc image with batteries included io.artifacthub.package.readme-url=https://raw.githubusercontent.com/${{ github.repository }}/main/README.md io.artifacthub.package.logo-url=https://avatars.githubusercontent.com/u/120078124?s=200&v=4 diff --git a/Containerfile b/Containerfile index 698c513..066e5d7 100644 --- a/Containerfile +++ b/Containerfile @@ -1,8 +1,8 @@ -ARG IMAGE_NAME="${IMAGE_NAME:-bootc}" +ARG IMAGE_NAME="${IMAGE_NAME:-base}" ARG BASE_IMAGE="quay.io/fedora/fedora-bootc" ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-40}" FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION} -ARG IMAGE_NAME="${IMAGE_NAME:-bootc}" +ARG IMAGE_NAME="${IMAGE_NAME:-base}" ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-40}"