From 0326553acbcaa32cc97c078ef7b31151b0b67bf1 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Sun, 5 Feb 2023 16:04:56 +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 28f41eba0f..c9c6bf2fcc 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