feat(SynthPointer): add support for button and pressure in HoverMove … #3
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Choco packages | |
uses: actions/cache@v3 | |
with: | |
path: ~\AppData\Local\Temp\chocolatey | |
key: ${{ runner.os }}-choco-${{ hashFiles('**/*.yml') }} | |
restore-keys: | | |
${{ runner.os }}-choco- | |
- name: Install dependencies | |
run: | | |
choco install llvm | |
choco install make | |
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' | |
- name: Configure | |
run: | | |
$env:CC="clang" | |
$env:CXX="clang++" | |
mkdir build | |
cd build | |
cmake -G "Unix Makefiles" .. | |
- name: Build | |
run: | | |
cd build | |
make | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ./build/SynthPointer.dll |