diff options
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/README.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/workflow/README.sh b/aux/workflow/README.sh index 8313274..e30344f 100755 --- a/aux/workflow/README.sh +++ b/aux/workflow/README.sh @@ -8,8 +8,8 @@ PROJECT="$2" MAILING_LIST="$3" RELEASES_LIST="$(mktemp)" -for version in $(git tag); do - 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" +for version in $(git tag | perl -e 'print reverse <>'); do + echo "- version [$version](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz) ([sig](https://git.euandreh.xyz/$PROJECT/snapshot/$PROJECT-$version.tar.gz.asc)), released in $(git log -1 --format=%cd --date=short "$version")" >> "$RELEASES_LIST" done RELEASES="$(mktemp)" |