Skip to content

Commit

Permalink
fix: fix wrong directory invocation in publish helm charts workflow (#…
Browse files Browse the repository at this point in the history
…14883)

* fix: fix wrong directory invocation in workflow

* fix: Increase waiting time for repo sync call

* fix: fix workflow
  • Loading branch information
xpuska513 authored Jul 20, 2022
1 parent c7774a5 commit ba38df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ba38df4

Please sign in to comment.