We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0963c5 commit fb583c7Copy full SHA for fb583c7
action.yml
@@ -154,7 +154,7 @@ runs:
154
155
# yq or xmllint are best for this, but they aren't installed by
156
# default on GH Linux runners, we we just use grep
157
- grep '<title>' swift-releases.xml | cut -f 2 -d '>' | cut -f 1 -d '<' | grep '^[0-9]' ${{ runner.temp }}/swift-releases.xml | sort -rn > ${SWIFT_VERSIONS_FILE}
+ grep '<title>' ${{ runner.temp }}/swift-releases.xml | cut -f 2 -d '>' | cut -f 1 -d '<' | grep '^[0-9]' | sort -rn > ${SWIFT_VERSIONS_FILE}
158
159
# if we hardcode the latest builds, we would need to update them every time a new snapshot is released
160
0 commit comments