Skip to content

Commit 592a3f3

Browse files
committed
Switch from -Include to -Filter in Extract SBOMs step which works as expected on Linux
1 parent b4934e6 commit 592a3f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-manual-build-test-sign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: 'Extract SBOMs'
6363
shell: pwsh
6464
run: >
65-
Get-ChildItem -Path nupkgs -Include *.nupkg -Force | ForEach-Object {
65+
Get-ChildItem -Path nupkgs -Filter *.nupkg -Force | ForEach-Object {
6666
Expand-Archive $_.FullName "$($_.DirectoryName)/$($_.Basename)" -Force
6767
Copy-Item "$($_.DirectoryName)/$($_.Basename)/_manifest/spdx_2.2/manifest.spdx.json" -Destination "nupkgs/$($_.Basename).spdx.json"
6868
Copy-Item "$($_.DirectoryName)/$($_.Basename)/_manifest/spdx_2.2/manifest.spdx.json.sha256" -Destination "nupkgs/$($_.Basename).spdx.json.sha256"

idunno.Bluesky.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ EndProject
2323
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C94F8041-6886-4D0F-82DC-8AF2B41FF649}"
2424
ProjectSection(SolutionItems) = preProject
2525
src\.editorconfig = src\.editorconfig
26-
src\Directory.Build.Props = src\Directory.Build.Props
26+
src\Directory.Build.props = src\Directory.Build.props
2727
src\readme.md = src\readme.md
2828
EndProjectSection
2929
EndProject

0 commit comments

Comments
 (0)