diff options
-rwxr-xr-x | build-aux/workflow/README.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/workflow/README.sh b/build-aux/workflow/README.sh index 4da9bb5..1aa2593 100755 --- a/build-aux/workflow/README.sh +++ b/build-aux/workflow/README.sh @@ -8,7 +8,7 @@ PROJECT="$2" RELEASES_LIST="$(mktemp)" for version in $(git tag); do - echo "- version [$version](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz)" >> "$RELEASES_LIST" + echo "- version [$version](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz), released in $(git log -1 --format=%cd --date=short "$version")" >> "$RELEASES_LIST" done RELEASES="$(mktemp)" |