File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 20
20
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_NON_SHARED=FALSE -DBUILD_SHARED=TRUE -DHAVE_ZLIB=FALSE -B build .
21
21
cd build/libdwarf
22
22
cmake --build .
23
+
24
+ - name : Release file
25
+ uses :
djnicholson/[email protected]
26
+ with :
27
+ token : ${{ secrets.GITHUB_TOKEN }}
28
+ asset-name : ' libdwarf.so'
29
+ file : ' build/libdwarf/libdwarf.so'
30
+ tag-name : ' latest'
31
+ release-name : ' Latest build'
23
32
24
33
build-windows :
25
34
runs-on : windows-latest
39
48
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_NON_SHARED=FALSE -DBUILD_SHARED=TRUE -DHAVE_ZLIB=FALSE -B build .
40
49
cd build/libdwarf
41
50
cmake --build .
51
+
52
+ - name : Release file
53
+ uses :
djnicholson/[email protected]
54
+ with :
55
+ token : ${{ secrets.GITHUB_TOKEN }}
56
+ asset-name : ' libdwarf.dll'
57
+ file : ' build/libdwarf/libdwarf.dll'
58
+ tag-name : ' latest'
59
+ release-name : ' Latest build'
42
60
43
61
build-macos :
44
62
runs-on : macos-latest
53
71
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_NON_SHARED=FALSE -DBUILD_SHARED=TRUE -DHAVE_ZLIB=FALSE -B build .
54
72
cd build/libdwarf
55
73
cmake --build .
74
+
75
+ - name : Release file
76
+ uses :
djnicholson/[email protected]
77
+ with :
78
+ token : ${{ secrets.GITHUB_TOKEN }}
79
+ asset-name : ' libdwarf.dylib'
80
+ file : ' build/libdwarf/libdwarf.dylib'
81
+ tag-name : ' latest'
82
+ release-name : ' Latest build'
83
+
84
+
You can’t perform that action at this time.
0 commit comments