Code clean up #274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Bot | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: git checkout | |
uses: actions/checkout@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup nuget | |
uses: nuget/setup-nuget@v1 | |
- name: Nuget restore | |
run: nuget restore | |
- name: Build solution | |
run: msbuild /p:Configuration=Release | |
- name: Upload ArmaforcesMissionBot build artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ArmaforcesMissionBot | |
path: ArmaforcesMissionBot/bin/Release |