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 8df32d9 commit ad8dbe3Copy full SHA for ad8dbe3
.github/workflows/BuildImage.yml
@@ -17,7 +17,7 @@ jobs:
17
run: |
18
# Set version
19
DOTNET_JSON="$(curl --retry 5 -sX GET https://raw.githubusercontent.com/dotnet/core/master/release-notes/releases-index.json)"
20
- DOTNET_VERSIONS="$(echo $DOTNET_JSON | jq -r '."releases-index"[] | select(."support-phase"=="lts" or ."support-phase"=="current") | ."latest-sdk"' | tr '\n' ' ' | head -c -1)"
+ DOTNET_VERSIONS="$(echo $DOTNET_JSON | jq -r '."releases-index"[] | select(."support-phase"=="active" or ."support-phase"=="maintenance") | ."latest-sdk"' | tr '\n' ' ' | head -c -1)"
21
DOTNET_TAG="$(echo $DOTNET_VERSIONS | tr ' ' '_')"
22
echo "DOTNET_TAG=${DOTNET_TAG}" >> $GITHUB_ENV
23
# Build image
0 commit comments