Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Rename boot => bootc
Browse files Browse the repository at this point in the history
  • Loading branch information
lmilbaum committed Nov 23, 2023
1 parent 19f97c9 commit b10f040
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/build-and-push-image.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
name: publish-image

on:

push:
branches:
- main
- main

schedule:
- cron: '35 */4 * * *'
- cron: "35 */4 * * *"

pull_request:
branches:
- main

workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: centos/centos-bootc-dev

jobs:
build-and-push-image:
runs-on: ubuntu-latest
Expand All @@ -17,10 +26,10 @@ jobs:
matrix:
os: [fedora, centos]
include:
- os: fedora
version: eln
- os: centos
version: stream9
- os: fedora
version: eln
- os: centos
version: stream9

steps:
- name: Install qemu dependency
Expand All @@ -38,7 +47,7 @@ jobs:
id: build
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
with:
image: quay.io/centos-boot/${{ matrix.os }}-tier-1-dev
image: quay.io/centos-boot/${{ matrix.os }}-bootc-dev
tags: ${{ matrix.version }}
containerfiles: ./${{ matrix.version }}-dev/Containerfile
archs: amd64
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# centos-boot-dev
# centos-bootc-dev

Development images for [centos-boot](https://github.com/CentOS/centos-boot).
Development images for [centos-bootc](https://github.com/CentOS/centos-bootc).

## Badges

Expand Down
2 changes: 1 addition & 1 deletion eln-dev/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/centos-boot/fedora-tier-1:eln
FROM quay.io/centos-bootc/fedora-bootc:eln
COPY *.repo /etc/yum.repos.d/
RUN dnf --disablerepo='*' --enablerepo=copr-coreos-continuous --enablerepo=copr-rhcontainerbot-bootc -y distro-sync && \
dnf clean all && rm -rf /var/* && \
Expand Down

0 comments on commit b10f040

Please sign in to comment.