Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-v1.16] Add update-deps.sh call to generate-release #1157

Merged
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
9 changes: 8 additions & 1 deletion openshift/release/generate-release.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

root="$(dirname "${BASH_SOURCE[0]}")"
root="$(dirname "${BASH_SOURCE[0]}")"/../..

source $(dirname $0)/resolve.sh

Expand All @@ -9,6 +9,13 @@ release=${release/knative-/}

echo "Release: $release"

# Reconcile dependencies in case of dependabot updates
"${root}"/hack/update-deps.sh
# Re-apply patches that touch vendor/ dir
git apply "${root}"/openshift/patches/001-object.patch
git apply "${root}"/openshift/patches/002-mutemetrics.patch
git apply "${root}"/openshift/patches/003-routeretry.patch

./openshift/generate.sh

readonly YAML_OUTPUT_DIR="openshift/release/artifacts/"
Expand Down
Loading