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 536943c commit 7a1c3aeCopy full SHA for 7a1c3ae
1 file changed
.github/workflows/BuildImage.yml
@@ -19,7 +19,7 @@ jobs:
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") | ."latest-sdk"' | tr '\n' ' ' | head -c -1)"
21
DOTNET_TAG="$(echo $DOTNET_VERSIONS | tr ' ' '_')"
22
- echo "DOTNET_TAG=${{ secrets.DOTNET_TAG }}" >> $GITHUB_ENV
+ echo "DOTNET_TAG=${DOTNET_TAG}" >> $GITHUB_ENV
23
# Build image
24
docker build --no-cache --build-arg DOTNET_VERSIONS="${DOTNET_VERSIONS}" -t ${{ github.sha }} .
25
0 commit comments