Skip to content

Commit 9a0f38c

Browse files
committed
Include the licenses of our dependencies in the Windows release
1 parent 59bfde6 commit 9a0f38c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/CI.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,18 @@ jobs:
5353
- name: Build
5454
working-directory: build
5555
run: cmake --build . --config ${{ matrix.configuration }} -j $env:NUMBER_OF_PROCESSORS
56+
- name: Copy licenses
57+
run: |
58+
mkdir LICENSES
59+
for /D %%x in (deps/*) do (
60+
mkdir LICENSES\%%x
61+
copy deps\%%x\LICENSE* LICENSES\%%x
62+
)
63+
shell: cmd
5664
- name: Prepare artifacts
5765
run: |
5866
mkdir artifacts
59-
mv -vb build\${{ matrix.configuration }}\extract-xiso.exe, LICENSE.TXT artifacts
67+
mv -vb build\${{ matrix.configuration }}\extract-xiso.exe, LICENSE.TXT, LICENSES artifacts
6068
- uses: actions/upload-artifact@v4
6169
with:
6270
name: extract-xiso-${{ matrix.artifact_os }}-${{ matrix.configuration }}

0 commit comments

Comments
 (0)