We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59bfde6 commit ffaf8a7Copy full SHA for ffaf8a7
.github/workflows/CI.yml
@@ -53,10 +53,18 @@ jobs:
53
- name: Build
54
working-directory: build
55
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
64
- name: Prepare artifacts
65
run: |
66
mkdir artifacts
- mv -vb build\${{ matrix.configuration }}\extract-xiso.exe, LICENSE.TXT artifacts
67
+ mv -vb build\${{ matrix.configuration }}\extract-xiso.exe LICENSE.TXT LICENSES artifacts
68
- uses: actions/upload-artifact@v4
69
with:
70
name: extract-xiso-${{ matrix.artifact_os }}-${{ matrix.configuration }}
0 commit comments