Add README #10
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: Build NandroidFS | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build installer | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Install dependencies | |
run: powershell ./install_deps.ps1 | |
- name: Build agent | |
run: cd nandroid_daemon && powershell ./build.ps1 | |
- name: Build windows app | |
run: msbuild /p:Configuration=Release | |
- name: Build installer | |
run: '& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /f ./installer/installer.iss' | |
- name: Standalone upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: standalone | |
path: ./x64/Release/** | |
- name: Installer upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: installer | |
path: ./installer/nandroidfs_installer.exe |