-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add label to descriptor (#1625) * Remove helm chart bundling of `KubeBuilder` projects (#1581) * remove helm chart bundling of kubebuilder projectss * update golang-ci version to latets * go fmt * rm unused code * rm commented code * go fmt * fix error caps * fix failing tests * refactor project build signature * fix linting * fix linting * fix linting ii * fix linting iii * fix linting * fix linting * fix linting * fix linting * fix linting * Remove envtest logs for verbose mode (#1629) * Support the installation of specific Garden Linux version for Gardener (#1630) * Add gardenlinux flag for Gardener provisioning * generate docs * fix test * fix test * Add missing comment Co-authored-by: Małgorzata Świeca <[email protected]> * Fix indentation --------- Co-authored-by: Małgorzata Świeca <[email protected]> * Replace key parsing logic with ocm signing (#1633) * replace public key parsing logic with what offered by ocm * replace private key parsing logic with what offered by ocm * change signature name and issuer * Upgrade hydroform version (#1635) * Configure creds for empty auth (#1634) * Debug * Fix for credentials * Cleanup * Updating goreleaser (#1642) * cred selector label should save in layer before push to oci image. (#1643) * bump reconciler (#1644) * Release 2.13.2 --------- Co-authored-by: Xin Ruan <[email protected]> Co-authored-by: Ali Khlifi <[email protected]> Co-authored-by: Nesma Badr <[email protected]> Co-authored-by: Małgorzata Świeca <[email protected]> Co-authored-by: Tomasz Smelcerz <[email protected]> Co-authored-by: Damian Badura <[email protected]>
- Loading branch information
1 parent
e690232
commit 777d771
Showing
9 changed files
with
56 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,26 +17,26 @@ delete_stable_tag() { | |
get_new_release_version() { | ||
# get the list of tags in a reverse chronological order | ||
TAG_LIST=($(git tag --sort=-creatordate)) | ||
NEW_RELEASE_VERSION=${TAG_LIST[0]} | ||
export GORELEASER_CURRENT_TAG=${TAG_LIST[0]} | ||
} | ||
|
||
get_current_release_version() { | ||
get_previous_release_version() { | ||
# get the list of tags in a reverse chronological order excluding release candidate tags | ||
TAG_LIST_WITHOUT_RC=($(git tag --sort=-creatordate | grep -v -e "-rc")) | ||
if [[ $NEW_RELEASE_VERSION == *"-rc"* ]]; then | ||
CURRENT_RELEASE_VERSION=${TAG_LIST_WITHOUT_RC[0]} | ||
export GORELEASER_PREVIOUS_TAG=${TAG_LIST_WITHOUT_RC[0]} | ||
else | ||
CURRENT_RELEASE_VERSION=${TAG_LIST_WITHOUT_RC[1]} | ||
export GORELEASER_PREVIOUS_TAG=${TAG_LIST_WITHOUT_RC[1]} | ||
fi | ||
} | ||
|
||
main() { | ||
git remote add origin [email protected]:kyma-project/cli.git | ||
delete_stable_tag | ||
get_new_release_version | ||
get_current_release_version | ||
get_previous_release_version | ||
# release CLI with release notes generated by goreleaser | ||
curl -sL https://git.io/goreleaser | VERSION=v1.11.4 bash -s -- | ||
curl -sL https://git.io/goreleaser | VERSION=v1.17.2 bash -s -- | ||
} | ||
|
||
main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ | |
package config | ||
|
||
const ( | ||
DefaultKyma2Version = "2.13.0" | ||
DefaultKyma2Version = "2.13.1" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters