Skip to content

Commit

Permalink
I love Windows shells
Browse files Browse the repository at this point in the history
  • Loading branch information
timoschwarzer committed Oct 7, 2021
1 parent f06a792 commit 25e5ad5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,16 @@ jobs:
cd projects/SeedgenCli
cargo build --release
echo Copying seedgen.exe
copy ".\target\release\seedgen.exe" "C:\seedgen\seedgen.exe"
Copy-Item -Path ".\target\release\seedgen.exe" -Destination "C:\seedgen\seedgen.exe"
echo Copying headers and presets
Copy-Item -Path headers -Recurse -Destination C:\seedgen\headers\
Copy-Item -Path presets -Recurse -Destination C:\seedgen\presets\
echo Copying loc_data.csv
copy ".\loc_data.csv" "C:\seedgen\loc_data.csv" /Y
Copy-Item -Path ".\loc_data.csv" -Destination "C:\seedgen\loc_data.csv"
echo Copying state_data.csv
copy ".\state_data.csv" "C:\seedgen\state_data.csv" /Y
Copy-Item -Path ".\state_data.csv" -Destination "C:\seedgen\state_data.csv"
echo Copying areas.wotw
copy ".\areas.wotw" "C:\seedgen\areas.wotw" /Y
Copy-Item -Path ".\areas.wotw" -Destination "C:\seedgen\areas.wotw"
- name: Archive seedgen
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 25e5ad5

Please sign in to comment.