Skip to content

Commit

Permalink
ci: fix the chart upgrade workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lentidas committed Jul 4, 2023
1 parent 5912ef9 commit 4666f4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/modules-chart-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
- name: "List charts in the ./charts folder"
id: find-charts
run: |
echo "::set-output name=charts::$(find charts -name 'Chart.yaml' -exec dirname {} \; | sed 's|^\./||' | sort -u)"
cd charts
echo "charts=$(find . -maxdepth 2 -name 'Chart.yaml' -exec dirname {} \; | sed 's|^\./||' | sort -u | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
chart-upgrade:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4666f4b

Please sign in to comment.