From f4b0a337bd4d697430060ace54e649f8a9c17ff1 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Mon, 16 Nov 2020 21:57:02 +0200 Subject: [PATCH] Use powershell commands to list directory --- .github/workflows/windows.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc032e0..14ddacd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -16,7 +16,10 @@ jobs: run: | New-Item -Path "../" -Name "Temp" -ItemType "directory" Move-Item -Path "./*" -Destination "../Temp/" - - run: curl --help - - run: curl --location --progress-bar $Env:OF_URL - - run: ls - - run: unzip openFrameworks.zip + Get-ChildItem -Path "../Temp" + Get-ChildItem -Path "./" + - name: Download and unzip openFrameworks + run: | + curl --help + curl --location --progress-bar openFrameworks.zip $Env:OF_URL + unzip openFrameworks.zip