mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-30 11:29:57 -06:00
25 lines
553 B
Bash
Executable File
25 lines
553 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [[ "$RUNNER_DEBUG" == "1" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
TARGET_BRANCH="$1"
|
|
REPO="${2:-keycloak}"
|
|
ORG="${3:-keycloak}"
|
|
|
|
if [[ "${TARGET_BRANCH}" != "release/"* ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
ALL_RELEASES=$(gh release list \
|
|
--repo "${ORG}/${REPO}" \
|
|
--exclude-drafts \
|
|
--exclude-pre-releases \
|
|
--json name \
|
|
--template '{{range .}}{{.name}}{{"\n"}}{{end}}'
|
|
)
|
|
MAJOR_MINOR=${TARGET_BRANCH#"release/"}
|
|
MAJOR_MINOR_RELEASES=$(echo "${ALL_RELEASES}" | grep "${MAJOR_MINOR}")
|
|
|
|
echo "${MAJOR_MINOR_RELEASES}" | jq -cnR '[inputs] | map({version: .})' |