From 0a0e9b4db91ae72801ec4f16551792693acd7461 Mon Sep 17 00:00:00 2001 From: Tomofumi Hayashi Date: Wed, 14 Dec 2022 03:02:55 +0900 Subject: [PATCH] Remove origin from CI build This change remove origin build from CI pipeline because origin's golang version is too old. --- .github/workflows/image-build.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/image-build.yml b/.github/workflows/image-build.yml index f4c958341..a05d262b2 100644 --- a/.github/workflows/image-build.yml +++ b/.github/workflows/image-build.yml @@ -108,21 +108,3 @@ jobs: push: false tags: ghcr.io/${{ github.repository }}:latest-s390x file: images/Dockerfile.s390x - - build-origin: - name: Image build/origin - runs-on: ubuntu-latest - steps: - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Build container image - uses: docker/build-push-action@v2 - with: - context: . - push: false - tags: ghcr.io/${{ github.repository }}:latest-origin - file: images/Dockerfile.openshift