diff options
author | EuAndreh <eu@euandre.org> | 2021-03-01 00:10:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-01 00:10:51 -0300 |
commit | eb7f5f737d3d9538ddd685a3a19a3321bc89d39a (patch) | |
tree | d77470bcb575e00991c1447f3d634609180288fa /aux/workflow/README.sh | |
parent | Makefile: stop ignoring terraform failure (diff) | |
download | server-eb7f5f737d3d9538ddd685a3a19a3321bc89d39a.tar.gz server-eb7f5f737d3d9538ddd685a3a19a3321bc89d39a.tar.xz |
Update files under aux/
Diffstat (limited to 'aux/workflow/README.sh')
-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)" |