Skip to content

Commit 2d13838

Browse files
authored
Remove Accuracy Fix download from msbuild workflow
Removed the Accuracy Fix download and extraction steps from the workflow.
1 parent d29ed39 commit 2d13838

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

.github/workflows/msbuild.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -95,32 +95,6 @@ jobs:
9595
# Copy item
9696
Copy-Item -Path $fromPath -Destination $DestPath
9797
98-
- name: Download Accuracy Fix
99-
run: |
100-
# Set assets data
101-
$assets = "https://github.com/SmileYzn/AccuracyFix/releases/download/1.0.4/accuracyfix-windows.zip"
102-
103-
# Get ZIP file name
104-
$zipName = "accuracyfix-windows.zip"
105-
106-
# Download ZIP file
107-
Invoke-WebRequest -Uri $assets -Out $zipName
108-
109-
# Extract ZIP File
110-
Expand-Archive $zipName
111-
112-
# Get base name from ZIP file
113-
$baseName = (Get-Item $zipName).BaseName
114-
115-
# DLL from path
116-
$fromPath = ".\" + $baseName + "\addons\accuracyfix\dlls\accuracyfix_mm.dll"
117-
118-
# DLL dest path
119-
$DestPath = ".\publish\addons\accuracyfix\accuracyfix_mm.dll"
120-
121-
# Copy item
122-
Copy-Item -Path $fromPath -Destination $DestPath
123-
12498
- name: Deploy artifacts
12599
uses: actions/upload-artifact@main
126100
with:

0 commit comments

Comments
 (0)