mirror of
https://github.com/rancher/os.git
synced 2025-05-31 19:06:17 +00:00
14 lines
439 B
Bash
Executable File
14 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
export REPO_VERSION=$VERSION
|
|
export COMPRESS="xz --format=lzma -9 --memlimit-compress=80% -e"
|
|
export INTEGRATION_TESTS=0
|
|
|
|
exec $(dirname $0)/ci
|
|
|
|
# make generated changelog
|
|
lastrelease=$(hub release | grep -v rc | head -n1 | tr -d ' \r\n')
|
|
git log --format="%s: %b" ${lastrelease}..${VERSION} | grep "Merge pull" | sed 's/.*\(#.*\) from .*:\(.*\)/* \1: \2/g' > dist/artifacts/changelog.txt
|