-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 947 Bytes
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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