Skip to content

Commit d319138

Browse files
committed
fix
1 parent 8a61183 commit d319138

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,18 @@ jobs:
156156
uses: actions/checkout@v4
157157

158158
- name: Download ImDisk
159-
shell: powershell
159+
shell: bash
160160
run: |
161-
$url = "https://sourceforge.net/projects/imdisk-toolkit/files/20241123/ImDiskTk-x64.zip/download"
162-
Invoke-WebRequest -Uri $url -OutFile "ImDiskTk.zip"
163-
Expand-Archive -Path "ImDiskTk.zip" -DestinationPath "ImDiskTk"
161+
mkdir imdisk
162+
cd imdisk
163+
curl -L -o files.cab https://imdisk-ci-files.pages.dev/ImDiskTk20241123/files.cab
164+
curl -L -o install.bat https://imdisk-ci-files.pages.dev/ImDiskTk20241123/install.bat
165+
cd ..
164166
165167
- name: Install ImDisk
166168
shell: cmd
167169
run: |
168-
cd ImDiskTk
170+
cd imdisk
169171
install.bat /silent
170172
171173
- name: Create RAM Disk

0 commit comments

Comments
 (0)