Skip to content

chore: Update GitHub Actions badge URL in README #12

chore: Update GitHub Actions badge URL in README

chore: Update GitHub Actions badge URL in README #12

Workflow file for this run

name: build
on:
release:
types: [created]
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Restore dependencies
run: dotnet restore src/UnlockerPatch/UnlockerPatch.csproj
- name: Build solution
run: msbuild src/UnlockerPatch/UnlockerPatch.csproj /p:Configuration=Release /p:Platform=x64 /p:GeneratePackageOnBuild=false