From fa0ae70f85f965e279e5faae6bdc60741c21c77b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AA=E3=81=A4=E3=81=8D?= Date: Fri, 8 Oct 2021 09:18:22 -0700 Subject: [PATCH] Use matrix build to test fully image name tag --- .../multiple-build-full-image-name.yaml | 182 ------------------ .github/workflows/multiple-build.yaml | 140 ++------------ 2 files changed, 14 insertions(+), 308 deletions(-) delete mode 100644 .github/workflows/multiple-build-full-image-name.yaml diff --git a/.github/workflows/multiple-build-full-image-name.yaml b/.github/workflows/multiple-build-full-image-name.yaml deleted file mode 100644 index 916bcb1..0000000 --- a/.github/workflows/multiple-build-full-image-name.yaml +++ /dev/null @@ -1,182 +0,0 @@ -name: Multiple container CLI build tests with full image name tags -on: - push: - workflow_dispatch: - schedule: - - cron: '0 0 * * *' # every day at midnight - -env: - IMAGE_REGISTRY: quay.io - IMAGE_NAMESPACE: redhat-github-actions - IMAGE_TAG: quay.io/redhat-github-actions/ptr-test:v1 - -jobs: - build-only-podman: - name: Build and push image built only on Podman - runs-on: ubuntu-20.04 - strategy: - fail-fast: false - matrix: - install_latest: [ true, false ] - - steps: - - # Checkout push-to-registry action github repository - - name: Checkout Push to Registry action - uses: actions/checkout@v2 - - - name: Install latest podman - if: matrix.install_latest - run: | - bash .github/install_latest_podman.sh - - - name: Build image using Podman - run: | - podman build -t ${{ env.IMAGE_TAG }} -<