Browse Source

Test Move-Item and New-Item

master
Krisjanis Rijnieks 5 years ago
parent
commit
e3ade7d788
  1. 17
      .github/workflows/windows.yml

17
.github/workflows/windows.yml

@ -12,16 +12,11 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 1 fetch-depth: 1
- run: Get-ExecutionPolicy - name: Move files to temporary location
- run: $HOME run: |
- run: $Host New-Item -Path "../" -Name "Temp" -ItemType "directory"
- run: $IsWindows Move-Item -Path "./*" -Destination "../Temp/"
- run: $PSHOME
- run: $PWD
- run: $Env:OF_URL
- run: mkdir ../.ofxPiMapper
- run: cp ./* ../.ofxPiMapper/
- run: curl --help - 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: curl --location --progress-bar $Env:OF_URL
- run: pwd && ls - run: ls
- run: unzip openFrameworks.zip - run: unzip openFrameworks.zip

Loading…
Cancel
Save