Skip to content

Commit

Permalink
EVEREST-107 Fix FB catalog (#1038)
Browse files Browse the repository at this point in the history
EVEREST-107 Fix FB catalog
  • Loading branch information
oksana-grishchenko authored Jan 23, 2025
1 parent 2379031 commit d0ec34f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/feature-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,24 @@ jobs:
path: everest-catalog
token: ${{ secrets.ROBOT_TOKEN }}

- name: Catalog - update veneer file
run: |
cd everest-catalog/tools
go run . \
--veneer-file ../veneer/everest-operator.yaml \
--channel fast-v0 \
--new-version ${{ env.VERSION }}
cd ..
curl -Lo /tmp/opm https://github.com/operator-framework/operator-registry/releases/download/v1.48.0/${OS}-${ARCH}-opm
chmod +x /tmp/opm
/tmp/opm alpha render-template basic --skip-tls -o yaml < veneer/everest-operator.yaml > catalog/everest-operator/catalog.yaml
# Check if catalog has the new version listed
if ! grep -q "$VERSION$" catalog/everest-operator/catalog.yaml; then
echo "catalog/everest-operator/catalog.yaml does not include the version $VERSION"
exit 1
fi
- name: Catalog - setup Docker meta for everest-catalog
id: catalog_meta
uses: docker/metadata-action@v5
Expand Down

0 comments on commit d0ec34f

Please sign in to comment.