Skip to content

Commit

Permalink
Merge pull request #2 from cytopia/release-0.2.0
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
cytopia authored Feb 23, 2022
2 parents a865d86 + bafaaa6 commit 4dfc75f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The following inputs can be used to alter the Docker tag name determination:

## :arrow_backward: Outputs

| Output | Description |
|--------------|-------------------------------|
| `matrix` | Stringified JSON build matrix |
| Output | Description |
|--------------|---------------------------------------------------------------|
| `matrix` | Stringified JSON build matrix. Example: `["master","v0.1.0"]` |


## :computer: Usage
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ runs:
###
### All newline separated refs
### All newline separated refs (and make unique in case of duplicated tags)
###
REFS="$( printf "%s\n%s\n%s\n" "${BRANCHES}" "${TAGS}" "${LATEST_TAGS}" | grep -Ev '^$' )"
REFS="$( printf "%s\n%s\n%s\n" "${BRANCHES}" "${TAGS}" "${LATEST_TAGS}" | grep -Ev '^$' | sort -u )"
echo "REFS:"
echo "${REFS}"
Expand Down

0 comments on commit 4dfc75f

Please sign in to comment.