Skip to content

sort the tab list popup shown from the button in the tab bar not alph… #96

sort the tab list popup shown from the button in the tab bar not alph…

sort the tab list popup shown from the button in the tab bar not alph… #96

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- "Languages/**"
- "plugins/**"
- "ext/**"
- "*.md"
pull_request:
branches: [ main ]
paths-ignore:
- "Languages/**"
- "plugins/**"
- "ext/**"
- "*.md"
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
# 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/[email protected]
with:
fetch-depth: 2
submodules: recursive
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
- name: Build x64
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=x64 ${{env.SOLUTION_FILE_PATH}}
- name: Upload artifacts for x64
uses: actions/[email protected]
with:
name: BowPad-x64
path: bin/Release64/bin/BowPad.exe
- name: Build ARM64
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=ARM64 ${{env.SOLUTION_FILE_PATH}}
- name: Upload artifacts for ARM64
uses: actions/[email protected]
with:
name: BowPad-ARM64
path: bin/ReleaseARM64/bin/BowPad.exe