Skip to content

Commit

Permalink
add build action
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankueng committed May 19, 2023
1 parent cadf614 commit 6e96c2a
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/msbuild.yml
@@ -0,0 +1,46 @@
name: Build

on:
push:
branches: [ main ]
paths-ignore:
- "*.md"
pull_request:
branches: [ main ]
paths-ignore:
- "*.md"

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: evernote2onenote

# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3.2.0
with:
fetch-depth: 2
submodules: recursive

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1.3

- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}

- name: Build Evernote2Onenote
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
- name: Upload artifacts
uses: actions/upload-artifact@v3.1.1
with:
name: Evernote2Onenote
path: bin/Release/Evernote2Onenote.exe

0 comments on commit 6e96c2a

Please sign in to comment.