Closed Totktonada closed 2 years ago
The new release policy (see https://github.com/tarantool/tarantool/discussions/6182) is in effect since Tarantool 2.10 and changes several things, including:
series-2
2.10
2.11
pre-release
live
2.10.0
2.10.0.0
alpha
beta
rc
This commit offers support of 2.10+ releases and leaves pre-releases unsupported (it is tracked in #23).
The usage is quite straightforward:
steps: - uses: actions/checkout@v2 - uses: tarantool/setup-tarantool@v1 with: tarantool-version: '2.10.0' # or '2.10', or just '2'
The latest 2.10.X version will be installed for tarantool-version: '2.10'. The latest 2.X.Y version will be installed for tarantool-version: '2'.
tarantool-version: '2.10'
tarantool-version: '2'
See notes on the implementatoin details in the commit message.
Fixes #19
Tested on the smtp module: https://github.com/tarantool/smtp/commit/e0f15045c7cb641b0780f45cc664bd39d19315c6.
Background
The new release policy (see https://github.com/tarantool/tarantool/discussions/6182) is in effect since Tarantool 2.10 and changes several things, including:
series-2
instead of2.10
,2.11
and so on.pre-release
repository.live
repository).2.10.0
instead of2.10.0.0
.alpha
,beta
,rc
marks in pre-release tarantool versions.Usage
This commit offers support of 2.10+ releases and leaves pre-releases unsupported (it is tracked in #23).
The usage is quite straightforward:
The latest 2.10.X version will be installed for
tarantool-version: '2.10'
. The latest 2.X.Y version will be installed fortarantool-version: '2'
.See notes on the implementatoin details in the commit message.
Fixes #19