Skip to content

feat: update catalog #3

feat: update catalog

feat: update catalog #3

Workflow file for this run

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