Skip to content

Commit 905435b

Browse files
authored
Add files via upload
1 parent 3be968e commit 905435b

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/workflows/cpp-test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test cpp
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
paths:
8+
- 'cpp/**.h'
9+
- 'cpp/**.cpp'
10+
- 'cpp/CMakeLists.txt'
11+
- 'cpp/conanfile.txt'
12+
pull_request:
13+
types:
14+
- edited
15+
branches:
16+
- 'main'
17+
paths:
18+
- 'cpp/**.h'
19+
- 'cpp/**.cpp'
20+
- 'cpp/CMakeLists.txt'
21+
- 'cpp/conanfile.txt'
22+
23+
jobs:
24+
main:
25+
uses: linksplatform/Workflows/.github/workflows/cpp-test.yml@main

.github/workflows/deploy-cpp.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Deploy new cpp version
2+
3+
on:
4+
push:
5+
branches: main
6+
paths:
7+
- 'cpp/**/*.nuspec'
8+
workflow_dispatch:
9+
10+
jobs:
11+
main:
12+
uses: linksplatform/Workflows/.github/workflows/deploy-cpp.yml@main
13+
with:
14+
recipe_folder: "platform.delegates"
15+
secrets:
16+
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}

0 commit comments

Comments
 (0)