Skip to content

Commit 4dd7195

Browse files
committed
Collect all .ABOUT files in the scancodeio/ directory #1327
Signed-off-by: tdruez <[email protected]>
1 parent d7298ab commit 4dd7195

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/generate-sboms.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
- name: Run pip freeze inside the built Docker container
2020
run: docker run --rm local-image pip freeze --all --exclude scancodeio > scancode-inputs/requirements.txt
2121

22+
- name: Collect all .ABOUT files in the scancodeio/ directory
23+
run: |
24+
mkdir -p scancode-inputs/about-files # Create the directory if it doesn't exist
25+
find scancodeio/ -type f -name "*.ABOUT" -exec cp {} scancode-inputs/about-files/ \;
26+
2227
- name: Resolve the dependencies using ScanCode-action
2328
uses: nexB/scancode-action@main
2429
with:

0 commit comments

Comments
 (0)