Bump Newtonsoft.Json from 13.0.1 to 13.0.3 #19
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: Universal Valve Toolbox - develop | |
on: | |
push: | |
branches: [ develop ] | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Set the value | |
run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV | |
- name: Checkout Code | |
uses: actions/checkout@master | |
with: | |
clean: true | |
fetch-depth: 0 | |
lfs: true | |
submodules: true | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
vs-prerelease: true | |
msbuild-architecture: x86 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1 | |
- name: Restore NuGet Packages | |
run: nuget restore src/UniversalValveToolbox.sln | |
- name: Build Debug | |
run: msbuild src/UniversalValveToolbox.sln /p:Configuration=Debug |