Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-software.eessi.io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
# The sort ensures predictable ordering, and with -u only keeps unique items (neither are probably essential, but both are nice)
# Finally, since the grep returns multiple lines if there are multiple versions that were touched,
# the tr replaces newlines with space, to make this space-separated.
EESSI_VERSIONS=$(git diff --name-only origin/${{ github.base_ref }}...HEAD \
EESSI_VERSIONS=$(printf '%s\n' "$changed_files" \
| grep -oP 'easystacks/software\.eessi\.io/\K[0-9]+\.[0-9]+' \
| sort -u \
| tr '\n' ' ')
Expand Down
Loading