-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): create releases with maintained action
Also, - fix release titles, and - pre-compute release notes to avoid unnecessary calls to GitHub API. refs: #23, #24
- Loading branch information
Showing
3 changed files
with
39 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
image_tag_list="${1}" | ||
|
||
# TODO: Include tag annotation? | ||
# TODO: include some form of changelog? | ||
|
||
echo -e "### Published images\n" | ||
for tag in $(grep -ve ':latest$' "${image_tag_list}"); do | ||
echo " - [${tag}](https://hub.docker.com/r/${tag%%:*})" | ||
done |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters