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

Wrong folder name #10

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main

pull_request:
branches:
- main

workflow_dispatch:

jobs:
Expand All @@ -25,6 +29,7 @@ jobs:

- name: Login to quay.io
run: buildah login --username ${{ secrets.QUAY_USER }} --password ${{ secrets.QUAY_PASSWORD }} quay.io
if: ${{ github.event_name == 'push' }}

- name: Build
id: build
Expand All @@ -38,5 +43,5 @@ jobs:
context: ${{ env.dir }}

- name: Push To quay.io
#run: buildah manifest push --all ${{ steps.build.outputs.image-with-tag }} docker://${{ steps.build.outputs.image-with-tag }}
run: buildah push ${{ steps.build.outputs.image-with-tag }} docker://${{ steps.build.outputs.image-with-tag }}
if: ${{ github.event_name == 'push' }}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This image contains cloud-init, which makes it usable out of the box
# for e.g. a pre-generated AWS or KVM guest system.
FROM quay.io/centos-bootc/fedora-dev-bootc:eln
FROM quay.io/centos-bootc/fedora-bootc-dev:eln
RUN dnf -y install cloud-init && \
ln -s ../cloud-init.target /usr/lib/systemd/system/default.target.wants && \
rm /var/log/*.log /var/lib/dnf -rf && ostree container commit
Expand Down
Loading