From 1cc4ba6f73c53fee482059e7715d6358b3b47944 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Sun, 5 Feb 2023 17:17:09 +0900 Subject: [PATCH] Fixed detect release for RHEL --- .github/workflows/images_build_rhel.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/images_build_rhel.yml b/.github/workflows/images_build_rhel.yml index 28f41eba0..c9c6bf2fc 100644 --- a/.github/workflows/images_build_rhel.yml +++ b/.github/workflows/images_build_rhel.yml @@ -260,6 +260,12 @@ jobs: -v $PFLT_DOCKERCONFIG:/temp-authfile.json:ro \ quay.io/opdev/preflight:stable check container ${{ steps.build_image.outputs.image-with-tag }} --submit + - name: Push to RedHat certification procedure + id: push_to_registry_all_tags + uses: redhat-actions/push-to-registry@v2 + with: + tags: ${{ steps.meta.outputs.tags }} + - name: Cleanup run: | echo "${{ steps.meta.outputs.tags }}" | while IFS= read -r image_name ; do podman rmi -i -f $image_name; done