From 9d9ff9f8f4e6cbe481106c8537834adb6c0fb6e6 Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Mon, 10 Aug 2020 09:18:02 -0700 Subject: [PATCH] Proper variable usage --- .github/workflows/workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index f1cff56..de79cd5 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -36,7 +36,7 @@ jobs: matrix: operating-system: [ubuntu-latest, windows-latest, macOS-latest] env: - DOTNET_INSTALL_DIR: $${{ runner.temp }} + DOTNET_INSTALL_DIR: ${{ runner.temp }} steps: - name: Checkout uses: actions/checkout@v2 @@ -69,7 +69,7 @@ jobs: - 3128:3128 env: https_proxy: http://squid-proxy:3128 - DOTNET_INSTALL_DIR: $${{ runner.temp }} + DOTNET_INSTALL_DIR: ${{ runner.temp }} steps: - name: Checkout uses: actions/checkout@v2 @@ -87,7 +87,7 @@ jobs: env: https_proxy: http://no-such-proxy:3128 no_proxy: github.com,dotnetcli.blob.core.windows.net,download.visualstudio.microsoft.com,api.nuget.org,dotnetcli.azureedge.net - DOTNET_INSTALL_DIR: $${{ runner.temp }} + DOTNET_INSTALL_DIR: ${{ runner.temp }} steps: - name: Checkout uses: actions/checkout@v2