Merge pull request #7 from GaijinEntertainment/version-1.7.0.0 #27
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
- name: Find msbuild | |
uses: microsoft/[email protected] | |
- name: Install NuGet | |
uses: nuget/[email protected] | |
- name: Install dependencies | |
run: nuget restore | |
- name: Build and package | |
run: msbuild /p:configuration=Release /p:DeployExtension=false /p:ZipPackageCompressionLevel=normal |