1
0
mirror of synced 2026-01-07 00:05:48 -05:00

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
This commit is contained in:
Kyryl Skobylko
2022-07-20 18:00:10 +03:00
committed by GitHub
parent c7774a5bf3
commit ba38df4398

View File

@@ -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