Skip to content

Workflow file for this run

name: VRCX
on:
- push
- pull_request
jobs:
build_vrcx_win:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Setup NodeJS 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup NSIS
run: sudo apt update && sudo apt install -y nsis nsis-pluginapi
- name: Restore Node Depedencies
run: cd html && npm ci && cd ..
#- name: JS Lint
# run: cd html && npm run lint && cd ..
- name: Build Web UI
run: cd html && npm run production && cd ..
- name: Build .NET Application
run: dotnet build -p:Configuration=Release -p:Platform=x64 -p:EnableWindowsTargeting=true
- name: Copy Web UI
run: cp html/dist bin/Release/x64/html
- name: Upload Zip
uses: actions/upload-artifact@v3
with:

Check failure on line 44 in .github/workflows/github_actions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/github_actions.yml

Invalid workflow file

You have an error in your yaml syntax on line 44
name: "VRCX"
path: "bin/Release/x64/*"