-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (45 loc) · 1.08 KB
/
plugin.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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