Skip to content

only send webhook if it is not a chat command #95

only send webhook if it is not a chat command

only send webhook if it is not a chat command #95

Workflow file for this run

name: MSBuild
on:
push
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Add MSBuild into PATH
uses: microsoft/setup-msbuild@v2
with:
# Version of Visual Studio to search; defaults to latest if not specified
vs-version: "latest"
# The preferred processor architecture of MSBuild. Can be either "x86", "x64", or "arm64". "x64" is only available from Visual Studio version 17.0 and later.
msbuild-architecture: "x86"
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration="Portal 2" .
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: p2mm
path: Release/p2mm.dll