We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc22be2 commit edb70b9Copy full SHA for edb70b9
1 file changed
.github/workflows/release.yml
@@ -29,9 +29,14 @@ jobs:
29
runs-on: windows-latest
30
steps:
31
- uses: actions/checkout@v4
32
+ - name: Setup MSVC dev cmd
33
+ uses: ilammy/msvc-dev-cmd@v1
34
+ with:
35
+ arch: x64
36
- name: Build port (MSVC)
37
shell: pwsh
38
run: |
39
+ New-Item -ItemType Directory -Force priv | Out-Null
40
cl /O2 /Fe:priv\minigui.exe c_src\minigui_port.c user32.lib gdi32.lib
41
Copy-Item priv\minigui.exe .\minigui.exe -Force
42
(Get-FileHash .\minigui.exe -Algorithm SHA256).Hash.ToLower() + " minigui.exe" | Out-File -Encoding ascii .\minigui.exe.sha256
0 commit comments