From 7adf474ac2be0ee7af66cd093d0dcd614ceed36f Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Fri, 1 Apr 2022 10:34:08 +0200 Subject: [PATCH] fix(ci): ensure the catalogs also get updated correctly --- .github/workflows/charts-release.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/charts-release.yaml b/.github/workflows/charts-release.yaml index 3cafd4ee489..721508715ac 100644 --- a/.github/workflows/charts-release.yaml +++ b/.github/workflows/charts-release.yaml @@ -93,6 +93,15 @@ jobs: fi done + - name: build catalogs + if: | + steps.collect-changes.outputs.changesDetected == 'true' + run: | + pip install yq + tools/build-release.sh -p + env: + CR_TOKEN: ${{ secrets.BOT_TOKEN }} + - name: Create commit id: create-commit uses: stefanzweifel/git-auto-commit-action@c4b132ec2c77a21fcab564bd3c92610cee84b894 # tag=v4 @@ -126,15 +135,6 @@ jobs: cd - rm -rf pub - - name: build catalogs - if: | - steps.collect-changes.outputs.changesDetected == 'true' - run: | - pip install yq - tools/build-release.sh -p - env: - CR_TOKEN: ${{ secrets.BOT_TOKEN }} - - name: Checkout uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3 with: