Skip to content

Commit 3c4c038

Browse files
committed
another fix
1 parent ad682be commit 3c4c038

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,19 @@ jobs:
154154
steps:
155155
- name: Checkout code
156156
uses: actions/checkout@v4
157-
158-
- name: Download and Install ImDisk
157+
158+
- name: Download ImDisk
159159
shell: powershell
160160
run: |
161-
$url = "https://sourceforge.net/projects/imdisk-toolkit/files/20190130/ImDiskTk.exe"
162-
Invoke-WebRequest -Uri $url -OutFile "ImDiskTk.exe"
163-
Start-Process -FilePath "ImDiskTk.exe" -ArgumentList "/fullsilent" -Wait -Verb RunAs
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"
164+
165+
- name: Install ImDisk
166+
shell: cmd
167+
run: |
168+
cd ImDiskTk
169+
install.bat /silent
164170
165171
- name: Create RAM Disk
166172
shell: cmd

0 commit comments

Comments
 (0)