diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3ed7f08..bc032e0 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -12,16 +12,11 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 1 - - run: Get-ExecutionPolicy - - run: $HOME - - run: $Host - - run: $IsWindows - - run: $PSHOME - - run: $PWD - - run: $Env:OF_URL - - run: mkdir ../.ofxPiMapper - - run: cp ./* ../.ofxPiMapper/ + - name: Move files to temporary location + run: | + New-Item -Path "../" -Name "Temp" -ItemType "directory" + Move-Item -Path "./*" -Destination "../Temp/" - run: curl --help - - run: curl --location --progress-bar --output openFrameworks.zip https://openframeworks.cc/versions/v0.11.0/of_v0.11.0_msys264_release.zip - - run: pwd && ls + - run: curl --location --progress-bar $Env:OF_URL + - run: ls - run: unzip openFrameworks.zip