Skip to content

Merge pull request #3 from coderang/dev #9

Merge pull request #3 from coderang/dev

Merge pull request #3 from coderang/dev #9

Workflow file for this run

name: build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

(Line: 44, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches: [dev, main, master]
pull_request:
branches: [dev, main, master]
jobs:
dotnet-build-logic:
if: true
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build Logic
run: dotnet build "./logic/logic.sln" -c Release
dotnet-build-install:
if: true
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build Installer
run: dotnet build "./installer/installer.sln" -c Release
dotnet-build-playback:
if: true
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build Playback
- run: dotnet build "./playback/playback.sln" -c Release