8000 Add SBOMs generation for Windows artifacts by sethmlarson · Pull Request #100 · python/release-tools · GitHub
[go: up one dir, main page]

Skip to content

Add SBOMs generation for Windows artifacts #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Apr 10, 2024
Merged
Prev Previous commit
Next Next commit
Use '$(Build.SourceBranchName)'
  • Loading branch information
sethmlarson committed Apr 8, 2024
commit 8cb1ff13da6d51ed5a519118d54388ca6ed75ca0
2 changes: 1 addition & 1 deletion windows-release/msi-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ steps:
*.exe

- powershell: |
git clone $(Build.Repository.Uri) -b $(Build.SourceBranch) --single-branch --no-checkout "$(Pipeline.Workspace)\release-tools"
git clone $(Build.Repository.Uri) -b $(Build.SourceBranchName) --single-branch --no-checkout "$(Pipeline.Workspace)\release-tools"
git -C "$(Pipeline.Workspace)\release-tools" checkout $(Build.SourceVersion)
displayName: 'Clone the python/release-tools repository'

Expand Down
2 changes: 1 addition & 1 deletion windows-release/stage-layout-embed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
displayName: 'Generate embeddable layout'

- powershell: |
git clone $(Build.Repository.Uri) -b $(Build.SourceBranch) --single-branch --no-checkout "$(Pipeline.Workspace)\release-tools"
git clone $(Build.Repository.Uri) -b $(Build.SourceBranchName) --single-branch --no-checkout "$(Pipeline.Workspace)\release-tools"
git -C "$(Pipeline.Workspace)\release-tools" checkout $(Build.SourceVersion)
displayName: 'Clone the python/release-tools repository'

Expand Down
0