Skip to content

bump version to 1.3.3 #7

bump version to 1.3.3

bump version to 1.3.3 #7

Workflow file for this run

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: evernote2onenote/src/bin/Release/Evernote2Onenote.exe