Skip to content

Move all Download URL in 1 spot #111

Move all Download URL in 1 spot

Move all Download URL in 1 spot #111

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@v2
with:
submodules: recursive
- name: Create NSIS installer
uses: joncloud/makensis-action@v5.0
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