Skip to content

Fixes and cleanup

Fixes and cleanup #121

Workflow file for this run

# Workflow based on https://github.com/joncloud/makensis-action-test/blob/publish/.github/workflows/main.yml
name: SlimeVR Windows Web Installer
on: [ push, pull_request ]
jobs:
build:
runs-on: windows-2022
env:
# The directory of the web installer project
WINDOWS_WEB_DIR: ${{ github.workspace }}/windows/web
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
submodules: recursive
- name: Create NSIS installer
uses: joncloud/[email protected]
with:
script-file: ${{ env.WINDOWS_WEB_DIR }}/slimevr_web_installer.nsi
- name: Upload the installer as a build artifact
uses: actions/upload-artifact@v4
with:
# Artifact name
name: "slimevr_web_installer" # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: ${{ env.WINDOWS_WEB_DIR }}/slimevr_web_installer.exe