From 0776c651d478036adc151f956fed3c25a6658376 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Thu, 2 Apr 2020 10:10:10 +0430 Subject: [PATCH] Unnecessary Nuget Command --- .github/workflows/main.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aa4d66a..0d48515 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,9 +23,7 @@ jobs: args: -O nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe - name: Install Dependencies - run: | - mono nuget.exe install - mono nuget.exe restore + run: mono nuget.exe restore # Runs a set of commands using the runners shell - name: Build Project @@ -42,9 +40,7 @@ jobs: uses: olegtarasov/download-nuget@v1 - name: Install Dependencies - run: | - mono $NUGET_EXE install - mono $NUGET_EXE restore + run: mono $NUGET_EXE restore # Runs a set of commands using the runners shell - name: Build Project @@ -62,9 +58,7 @@ jobs: uses: warrenbuckley/Setup-Nuget@v1 - name: Install Dependencies - run: | - Nuget.exe install - Nuget.exe restore + run: Nuget.exe restore - name: setup-msbuild uses: microsoft/setup-msbuild@v1