File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 81
81
cd ${{ github.ref_name }}
82
82
cp -r libs/*/include/boost libs/numeric/*/include/boost .
83
83
rm -rf libs/*/include libs/numeric/*/include
84
+ rm -f CMakeLists.txt
84
85
85
86
- name : Create archives
86
87
run : |
92
93
files : |
93
94
${{ github.ref_name }}-b2-nodocs.tar.gz
94
95
${{ github.ref_name }}-b2-nodocs.tar.xz
96
+
97
+ release-windows-b2-nodocs :
98
+ runs-on : windows-latest
99
+
100
+ needs : release-posix-b2-nodocs
101
+
102
+ steps :
103
+ - uses : actions/checkout@v4
104
+ with :
105
+ path : ${{ github.ref_name }}
106
+ submodules : true
107
+
108
+ - name : Cleanup
109
+ shell : bash
110
+ run : |
111
+ find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} +
112
+
113
+ - name : Move headers
114
+ shell : bash
115
+ run : |
116
+ cd ${{ github.ref_name }}
117
+ cp -r libs/*/include/boost libs/numeric/*/include/boost .
118
+ rm -rf libs/*/include libs/numeric/*/include
119
+ rm -f CMakeLists.txt
120
+
121
+ - name : Create archives
122
+ shell : cmd
123
+ run : |
124
+ 7z a ${{ github.ref_name }}-b2-nodocs.zip ${{ github.ref_name }}
125
+ 7z a ${{ github.ref_name }}-b2-nodocs.7z ${{ github.ref_name }}
126
+
127
+ - uses : softprops/action-gh-release@v1
128
+ with :
129
+ files : |
130
+ ${{ github.ref_name }}-b2-nodocs.zip
131
+ ${{ github.ref_name }}-b2-nodocs.7z
You can’t perform that action at this time.
0 commit comments