Update version to 1.3.7 #87
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 .net core | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.100 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Install client dependencies | |
run: setup.cmd | |
shell: cmd | |
- name: Build | |
run: build.cmd Release | |
shell: cmd | |
- name: Test | |
run: test.cmd Release | |
shell: cmd | |
- name: Pack | |
run: pack.cmd Release | |
shell: cmd | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nuget | |
path: | | |
artifacts/packages/*.nupkg |