Skip to content

Add Pen Support (Soft Keys) #42

Add Pen Support (Soft Keys)

Add Pen Support (Soft Keys) #42

Workflow file for this run

name: Build Plugins
on:
push:
paths:
- '.modules/**'
- 'Touch-Gestures/**'
- 'Touch-Gestures-0.6.x/**'
- 'Touch-Gestures.Lib/**'
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
5.0.x
6.0.x
- name: Build
run: bash ./build-plugin.sh --no-zip
- name: Remove PDB files
run: |
find ./build/plugin/0.5.x -name "*.pdb" -type f -delete
find ./build/plugin/0.6.x -name "*.pdb" -type f -delete
- uses: actions/upload-artifact@main
with:
name: "Touch-Gestures-0.5.x"
path: |
./build/plugin/0.5.x/*
!./build/plugin/0.5.x/*.pdb
- uses: actions/upload-artifact@main
with:
name: "Touch-Gestures-0.6.x"
path: |
./build/plugin/0.6.x/*
!./build/plugin/0.6.x/*.pdb