From 7a1c3aecdf35e441d54b41ab1df5baca3752d99b Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Mon, 2 Nov 2020 13:01:22 -0600 Subject: [PATCH] Update BuildImage.yml --- .github/workflows/BuildImage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/BuildImage.yml b/.github/workflows/BuildImage.yml index ca58270..6f1d6aa 100644 --- a/.github/workflows/BuildImage.yml +++ b/.github/workflows/BuildImage.yml @@ -19,7 +19,7 @@ jobs: DOTNET_JSON="$(curl --retry 5 -sX GET https://raw.githubusercontent.com/dotnet/core/master/release-notes/releases-index.json)" DOTNET_VERSIONS="$(echo $DOTNET_JSON | jq -r '."releases-index"[] | select(."support-phase"=="lts") | ."latest-sdk"' | tr '\n' ' ' | head -c -1)" DOTNET_TAG="$(echo $DOTNET_VERSIONS | tr ' ' '_')" - echo "DOTNET_TAG=${{ secrets.DOTNET_TAG }}" >> $GITHUB_ENV + echo "DOTNET_TAG=${DOTNET_TAG}" >> $GITHUB_ENV # Build image docker build --no-cache --build-arg DOTNET_VERSIONS="${DOTNET_VERSIONS}" -t ${{ github.sha }} .