mirror of
https://github.com/R-YaTian/TinkeDSi.git
synced 2025-06-18 16:45:43 -04:00
37 lines
669 B
YAML
37 lines
669 B
YAML
name: Build TinkeDSi nightly
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
env:
|
|
Solution_Name: Tinke.sln
|
|
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@main
|
|
with:
|
|
dotnet-version: 6.0.x
|
|
|
|
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
|
|
- name: Setup MSBuild.exe
|
|
uses: microsoft/setup-msbuild@main
|
|
|
|
# Build
|
|
- name: Build
|
|
run: |
|
|
./compile.bat Release x64
|
|
|
|
- uses: actions/upload-artifact@main
|
|
with:
|
|
name: TinkeDSi-nightly
|
|
path: build
|