fix(ci): ensure the catalogs also get updated correctly

This commit is contained in:
kjeld Schouten-Lebbing 2022-04-01 10:34:08 +02:00
parent 364669ddf5
commit 7adf474ac2
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
1 changed files with 9 additions and 9 deletions

View File

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