From ba38df43988a7b4350cedfa2f79e67eee24ed166 Mon Sep 17 00:00:00 2001 From: Kyryl Skobylko Date: Wed, 20 Jul 2022 18:00:10 +0300 Subject: [PATCH] fix: fix wrong directory invocation in publish helm charts workflow (#14883) * fix: fix wrong directory invocation in workflow * fix: Increase waiting time for repo sync call * fix: fix workflow --- .github/workflows/publish-helm-charts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-helm-charts.yml b/.github/workflows/publish-helm-charts.yml index d2e476936de..29df4e8a365 100644 --- a/.github/workflows/publish-helm-charts.yml +++ b/.github/workflows/publish-helm-charts.yml @@ -51,7 +51,7 @@ jobs: shell: bash working-directory: ./airbyte/charts run: | - sed -i "s/ version: placeholder/ version: ${{ needs.generate-semantic-version.outputs.next-version }}/g" charts/airbyte/Chart.yaml + sed -i "s/ version: placeholder/ version: ${{ needs.generate-semantic-version.outputs.next-version }}/g" airbyte/Chart.yaml - name: "Helm package" shell: bash @@ -74,7 +74,7 @@ jobs: shell: bash run: | echo "Waiting for published charts to be synced in helm-charts repo" - sleep 120 + sleep 300 declare -a StringArray=("airbyte") for val in ${StringArray[@]}; do cd ./airbyte/charts/${val} && cat Chart.yaml && helm dep update && cd $GITHUB_WORKSPACE