Merge pull request #788 from Pax1601/779-add-json-validation #30
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 & package | |
on: | |
push: | |
branches: [ "main", "release-candidate" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Setup vcpkg | |
run: | | |
bootstrap-vcpkg | |
vcpkg integrate install | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
- name: Build | |
working-directory: . | |
run: "./build_package.bat" | |
shell: cmd | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: development_build_not_a_release | |
path: ./package | |