From 39497d3201b6f37fe23c42ec2369b9af669c814a Mon Sep 17 00:00:00 2001 From: Rael Garcia Arnes Date: Thu, 21 Nov 2024 20:01:45 +0100 Subject: [PATCH] clean: removes the stable check from the catalog workflow Signed-off-by: Rael Garcia Arnes --- .github/workflows/release-catalog.yaml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/release-catalog.yaml b/.github/workflows/release-catalog.yaml index 3c74720..593d51a 100644 --- a/.github/workflows/release-catalog.yaml +++ b/.github/workflows/release-catalog.yaml @@ -8,31 +8,10 @@ on: - catalog/**/stable-channel.yaml jobs: - check: - name: Check if it's a stable release - runs-on: ubuntu-24.04 - outputs: - stable-release: ${{ env.NEW_RELEASE }} - steps: - - uses: actions/checkout@v4.2.2 - - - uses: actions/cache@v4.1.2 - with: - key: ${{ runner.os }}-bin - path: ./bin - - - id: new-release - name: Check if it's a stable release - run: | - echo "NEW_RELEASE=$(make get-new-release)" >> $GITHUB_ENV - - build: - if: needs.check.outputs.stable-release != '' + catalog: name: Build and push the catalog release image - needs: check runs-on: ubuntu-24.04 env: - RELEASE: ${{ needs.check.outputs.stable-release }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v4.2.2