From 1d8d2950ae82f72a14d264247dad3c17225778fc Mon Sep 17 00:00:00 2001 From: mitulshah-suse Date: Fri, 14 Jun 2024 11:12:43 +0530 Subject: [PATCH] Fix dependencies to run correctly on tag --- .github/workflows/workflow.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index 10e237b8..209562ff 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -74,7 +74,7 @@ jobs: contents: write runs-on: ubuntu-latest timeout-minutes: 10 - needs: [ci, integration-ci] + needs: ci if: github.event_name == 'push' && github.ref_type == 'tag' && (contains(github.ref_name, 'rc') || contains(github.ref_name, 'alpha')) steps: - name: Checkout code @@ -93,7 +93,7 @@ jobs: contents: write runs-on: ubuntu-latest timeout-minutes: 10 - needs: [ci, integration-ci] + needs: ci if: github.event_name == 'push' && github.ref_type == 'tag' && !(contains(github.ref_name, 'rc') || contains(github.ref_name, 'alpha')) steps: - name: Checkout code @@ -113,7 +113,7 @@ jobs: id-token: write runs-on: ubuntu-latest timeout-minutes: 10 - needs: [ci, integration-ci] + needs: ci if: github.event_name == 'push' && github.ref_type == 'tag' steps: - name: Checkout code