Skip to content

Commit

Permalink
Proper variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Eisinger committed Aug 10, 2020
1 parent e86a5fd commit 9d9ff9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 9d9ff9f

Please sign in to comment.