Skip to content

Refactor build.cake by removing unused tasks and simplifying the buil… #5

Refactor build.cake by removing unused tasks and simplifying the buil…

Refactor build.cake by removing unused tasks and simplifying the buil… #5

Workflow file for this run

name: Manual Trigger Workflow
on:
push:
branches: [main, dev]
workflow_dispatch: {}
jobs:
build-and-pack:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
- name: Restore NuGet Packages
run: nuget restore ./source/FreeGameNotifications.sln
- name: Build
run: msbuild ./source/FreeGameNotifications.sln /p:Configuration=Release /p:Platform="Any CPU"