Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,11 @@ postsubmits:
--file infra/docker/serving/Dockerfile \
--google-service-account-file /etc/gcloud/service-account.json

infra/scripts/publish-docker-image.sh \
--repository gcr.io/kf-feast/feast-jupyter \
--tag ${PULL_BASE_REF:1} \
--file infra/docker/jupyter/Dockerfile \
--google-service-account-file /etc/gcloud/service-account.json

HIGHEST_SEMVER_TAG=$(git tag -l --sort -version:refname | head -n 1)
echo "Only push to latest tag if tag is the highest semver version $HIGHEST_SEMVER_TAG"
Expand All @@ -462,6 +467,9 @@ postsubmits:

docker tag gcr.io/kf-feast/feast-serving:${PULL_BASE_REF:1} gcr.io/kf-feast/feast-serving:latest
docker push gcr.io/kf-feast/feast-serving:latest

docker tag gcr.io/kf-feast/feast-jupyter:${PULL_BASE_REF:1} gcr.io/kf-feast/feast-jupyter:latest
docker push gcr.io/kf-feast/feast-jupyter:latest
fi

fi
Expand Down
673 changes: 248 additions & 425 deletions examples/basic/basic.ipynb

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading