prevent re-entry into UI state redraws, the redraw causes on-change e… #48
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: Binxelview Builds | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-net: | |
name: Binxelview .NET | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout Files | |
uses: actions/checkout@v4 | |
- name: Setup MSVC | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build | |
run: msbuild binxelview.sln -t:rebuild -property:Configuration=Release -property:Platform="Any CPU" | |
- name: Prepare Artifacts | |
shell: pwsh | |
run: | | |
./artifact.bat | |
echo "BUILD_TAG=$(git log -1 --format="%ad--%h" --date=format-local:"%Y-%m-%d-%H%M%S")" >> $env:GITHUB_ENV | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binxelview-unstable--${{ env.BUILD_TAG }} | |
path: presets/ |