Skip to content

MSBuild

MSBuild #8

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: MSBuild
on:
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
- 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 /p:Configuration=Release /p:Platform=x64
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: automated_build
files: |
./bin/x64/Release/audy.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}