From 29501ff6abf1c9690274c0cd8b2b7d1d331923fb Mon Sep 17 00:00:00 2001 From: Andrea Cosentino Date: Thu, 8 Feb 2024 14:44:31 +0100 Subject: [PATCH] Update release-pipeline.yml --- .github/workflows/release-pipeline.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-pipeline.yml b/.github/workflows/release-pipeline.yml index 8f32230..8277c5d 100644 --- a/.github/workflows/release-pipeline.yml +++ b/.github/workflows/release-pipeline.yml @@ -160,6 +160,7 @@ jobs: with: repository: kaotoIO/community-operators token: ${{ secrets.PR_TOKEN }} + path: community-operators ref: main - name: "🛰️ Download Bundle" @@ -173,7 +174,8 @@ jobs: BRANCH_NAME: "kaoto-operator.${{ github.event.inputs.operator_version }}" GH_TOKEN: ${{ secrets.PR_TOKEN }} run: | - + + pushd community-operators echo "" echo "branch : $BRANCH_NAME" echo "" @@ -193,6 +195,7 @@ jobs: git push -u origin ${BRANCH_NAME} gh pr create --title "operator kaoto (${{ github.event.inputs.operator_version }})" -F ../.github/operatorhub/community-operators -R k8s-operatorhub/community-operators + popd prepare-openshift-operator-branch: permissions: @@ -211,6 +214,7 @@ jobs: with: repository: kaotoIO/community-operators-prod token: ${{ secrets.PR_TOKEN }} + path: community-operators-prod ref: main - name: "🛰️ Download UI Dist" @@ -224,7 +228,8 @@ jobs: BRANCH_NAME: "kaoto-operator.${{ github.event.inputs.operator_version }}" GH_TOKEN: ${{ secrets.PR_TOKEN }} run: | - + + pushd community-operators-prod echo "" echo "branch : $BRANCH_NAME" echo "" @@ -245,3 +250,4 @@ jobs: git push -u origin ${BRANCH_NAME} gh pr create --title "operator kaoto (${{ github.event.inputs.operator_version }})" -F ../.github/openshift/community-operators-prod -R redhat-openshift-ecosystem/community-operators-prod + popd