chore: Merge branch dev to main #1
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 app | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main, dev ] | |
jobs: | |
build: | |
name: Build app | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: setup-msbuild | |
uses: microsoft/[email protected] | |
- name: Restore Packages and build solution | |
run: ".\\build.cmd" | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: pseudocode-ide | |
# A file, directory or wildcard pattern that describes what to upload | |
path: bin/Release/ | |