We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a818e97 commit 10e7a27Copy full SHA for 10e7a27
.github/workflows/release.yml
@@ -2,6 +2,10 @@
2
name: "Pre-Release"
3
4
on:
5
+ push:
6
+ paths:
7
+ - '.github/workflows/release.yml'
8
+
9
pull_request:
10
branches: [ "main" ]
11
paths:
@@ -29,7 +33,7 @@ jobs:
29
33
uses: actions/upload-artifact@v3
30
34
with:
31
35
name: linux-binary
32
- path: ${{github.workspace}}/build/libserialport.so
36
+ path: ${{github.workspace}}/build/src/libserialport.so
37
38
build_windows:
39
runs-on: windows-latest
@@ -47,7 +51,7 @@ jobs:
47
51
48
52
49
53
name: windows-binary
50
- path: ${{github.workspace}}\build\Release\serialport.dll
54
+ path: ${{github.workspace}}\build\src\Release\serialport.dll
55
56
pre-release:
57
needs: [build_windows, build_linux]
0 commit comments