Skip to content

Trigger new workflows on push so github webUI is happy #1

Trigger new workflows on push so github webUI is happy

Trigger new workflows on push so github webUI is happy #1

name: SysDVR-Client Windows x64
on:
workflow_dispatch:
push:
branches: [ "6.0" ]
#push:
# branches: [ master ]
# paths:
# - Client/**
# - ClientGUI/**
# - Libs/**
# - ReleaseClient.bat
# # but not the multiplatform builds
# - '!Client/Platform/Android/**'
# - '!Client/Platform/Linux/**'
# pull_request:
# branches: [ master ]
# paths:
# - Client/**
# - ClientGUI/**
# - Libs/**
# - ReleaseClient.bat
# - '!Client/Platform/Android/**'
# - '!Client/Platform/Linux/**'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
# SysDVR-Client uses .NET6
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.x
- name: Run build script
shell: cmd
run: |
cd Client\Platform
.\BuildWindows.bat
- uses: actions/upload-artifact@v3
with:
name: SysDVR-Client-Windows-x64
path: Client\Client.7z