From 125e7ac05e15f86e60124a05c75a1af6c58e6afe Mon Sep 17 00:00:00 2001 From: Ken Zangelin Date: Wed, 3 May 2023 13:10:15 +0200 Subject: [PATCH] Removed the deploy release to redhat as it isn't working anymore --- .github/workflows/deploy-release.yml | 34 ---------------------------- 1 file changed, 34 deletions(-) diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 1cf8450e10..1126699651 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -11,40 +11,6 @@ env: jobs: - deploy-release-redhat: - runs-on: ubuntu-20.04 - if: github.event_name == 'push' - - steps: - - uses: actions/checkout@v2 - - - name: Extract branch name - shell: bash - run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" - id: extract_branch - - - uses: jungwinter/split@v1 - id: split - with: - msg: ${{ steps.extract_branch.outputs.branch }} - seperator: / - - - name: Build image - uses: redhat-actions/buildah-build@v2 - id: build-image - with: - image: ${{ env.IMAGE_NAME }} - tags: ${{ steps.split.outputs._1 }} - containerfiles: | - ./docker/Dockerfile-ubi - - - name: Push To certification registry - id: push-to-cert - run: | - podman tag ${{ env.IMAGE_NAME }}:${{ steps.split.outputs._1 }} scan.connect.redhat.com/ospid-61aa0f57e87c1ebf3e3a4d15/${{ env.IMAGE_NAME }}:${{ steps.split.outputs._1 }} - podman push scan.connect.redhat.com/ospid-61aa0f57e87c1ebf3e3a4d15/${{ env.IMAGE_NAME }}:${{ steps.split.outputs._1 }} - - deploy-release-quay: runs-on: ubuntu-latest if: github.event_name == 'push'