Other code fixes #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WUIsBack Nightly AutoBuilder | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Download repository | |
uses: actions/checkout@v3 | |
- name: Install NSIS | |
run: | | |
iwr -useb get.scoop.sh -outfile 'install.ps1' | |
.\install.ps1 -RunAsAdmin | |
scoop update | |
scoop bucket add extras | |
scoop install nsis | |
- name: Download latest DLL | |
run: | | |
md .\Release | |
md .\x64\Release | |
iwr http://vichingo455.ddns.net/WUIsBack/dll/LegacyUpdate32.dll -outfile '.\Release\LegacyUpdate.dll' | |
iwr http://vichingo455.ddns.net/WUIsBack/dll/LegacyUpdate64.dll -outfile '.\x64\Release\LegacyUpdate.dll' | |
- name: Compile WUIsBack | |
run: | | |
makensis "setup\setup.nsi" | |
- name: Upload Nightly Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: WUIsBack-nightly | |
path: setup/WUIsBack-latest.exe |