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 - Creating the release branch from the specified commit #2062

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
Release - Creating the release branch from the specified commit
  • Loading branch information
Ark-kun committed Sep 8, 2019
commit 920e8e25a57030b4c35e30411982eddea2ce8a4c
4 changes: 2 additions & 2 deletions components/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ clone_dir=$(mktemp -d)
git clone "git@github.com:${REPO}.git" "$clone_dir"
cd "$clone_dir"
branch="release-$COMMIT_SHA"
# Currently the release is based on master
release_head=master
# Creating the release branch from the specified commit
release_head=$COMMIT_SHA
git checkout "$release_head" -b "$branch"

# Releasing the container images to public. Updating components and samples.
Expand Down