mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
GHA: Print current crate version too
This commit is contained in:
parent
a11cba66d4
commit
a3aa3ace1c
1 changed files with 4 additions and 2 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -463,8 +463,10 @@ jobs:
|
||||||
# followed by MAJOR.MINOR.PATCH, see semver.org
|
# followed by MAJOR.MINOR.PATCH, see semver.org
|
||||||
# Store first in array as stable
|
# Store first in array as stable
|
||||||
stable=${vers}
|
stable=${vers}
|
||||||
|
crateversion={{ env.versionmajor }}
|
||||||
|
|
||||||
echo "Stable version: $stable"
|
echo "Latest stable version: $stable"
|
||||||
|
echo "Current crate version: $crateversion"
|
||||||
|
|
||||||
# Create directories
|
# Create directories
|
||||||
td=$(mktemp -d)
|
td=$(mktemp -d)
|
||||||
|
@ -481,7 +483,7 @@ jobs:
|
||||||
# Create the redirects for dev-version
|
# Create the redirects for dev-version
|
||||||
# If the current stable and the version being built differ,
|
# If the current stable and the version being built differ,
|
||||||
# then there is a dev-version and the links should point to it.
|
# then there is a dev-version and the links should point to it.
|
||||||
if [[ "$stable" != "{{ env.versionmajor }}" ]];
|
if [[ "$stable" != "$crateversion" ]];
|
||||||
then
|
then
|
||||||
sed 's|URL|rtic/index.html|g' redirect.html > $td/$devver/api/index.html
|
sed 's|URL|rtic/index.html|g' redirect.html > $td/$devver/api/index.html
|
||||||
sed 's|URL|book/en|g' redirect.html > $td/$devver/index.html
|
sed 's|URL|book/en|g' redirect.html > $td/$devver/index.html
|
||||||
|
|
Loading…
Reference in a new issue