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
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

Loading…
Cancel
Save