feat: update catalog #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Catalog Update | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
env: | |
REGISTRY: wandelbots.azurecr.io | |
IMAGE_NAME: nova-apps/zivid-nova | |
jobs: | |
update-catalog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: wandelbotsgmbh/catalog | |
- name: Update Catalog | |
# if: steps.release.outputs.version != '' | |
# yamllint disable rule:line-length | |
run: | | |
git co -b feature/update-zivid-nova-to-1.0.0 | |
yq -i -I4 '.app.containerImage.image = "wandelbots.azurecr.io/nova-services/zivid-intel:1.0.0"' catalog/zivid-intel/manifest.yaml | |
yq -i -I4 '.version = "1.0.0"' catalog/zivid-intel/manifest.yaml | |
git add catalog/zivid-intel/manifest.yaml | |
git push origin feature/update-zivid-nova-to-1.0.0 | |
gh pr create --title "Update Zivid to 1.0.0" --body "Update Zivid Nova to 1.0.0" --base main |