Skip to content

Commit 7b5555a

Browse files
committed
Let's try again!
1 parent e5ddf60 commit 7b5555a

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,22 +59,17 @@ jobs:
5959
name: Build Windows x64
6060
runs-on: windows-latest
6161
steps:
62-
- name: Get SDL2
63-
run: |
64-
mkdir temp
65-
Invoke-WebRequest -Uri https://www.libsdl.org/release/SDL2-devel-2.0.14-VC.zip -OutFile SDL2.zip
66-
Expand-Archive -LiteralPath SDL2.zip -DestinationPath .\temp
67-
dir temp
68-
cp temp\SDL2*\lib\x64\SDL2.* .\
69-
dir
70-
ls
71-
Remove-Item -Recurse -Force temp
7262
- name: Checkout
7363
uses: actions/checkout@v2
74-
- name: Copy SDL2 to project root
64+
- name: Get SDL2
7565
run: |
76-
cp ..\SDL2* .\
77-
ls
66+
mkdir download
67+
Invoke-WebRequest -Uri https://www.libsdl.org/release/SDL2-devel-2.0.14-VC.zip -OutFile download\SDL2.zip
68+
Expand-Archive -LiteralPath download\SDL2.zip -DestinationPath .\download
69+
cp download\SDL2*\lib\x64\SDL2.* .\
70+
Remove-Item -Recurse -Force download
71+
Remove-Item -Recurse -Force download
72+
dir
7873
- name: Set Rust toolchain
7974
uses: actions-rs/toolchain@v1
8075
with:

0 commit comments

Comments
 (0)