Skip to content

Add README

Add README #10

Workflow file for this run

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