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:
4
.github/workflows/publish-helm-charts.yml
vendored
4
.github/workflows/publish-helm-charts.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user