forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the combined package build to release the daily builds (PowerS…
- Loading branch information
1 parent
da74854
commit 704ee90
Showing
15 changed files
with
313 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
tools/releaseBuild/azureDevOps/templates/SetVersionVariables.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
parameters: | ||
parentJobs: [] | ||
|
||
jobs: | ||
- job: json | ||
displayName: Create Json for Blob | ||
dependsOn: | ||
${{ parameters.parentJobs }} | ||
condition: succeeded() | ||
pool: | ||
vmImage: windows-latest | ||
|
||
steps: | ||
#- task: <task type name>@<version> | ||
# inputs: | ||
# <task specific inputs> | ||
# displayName: '<display name of task>' | ||
- template: SetVersionVariables.yml | ||
parameters: | ||
ReleaseTagVar: $(ReleaseTagVar) | ||
CreateJson: yes | ||
|
||
- task: AzureFileCopy@1 | ||
displayName: 'upload signed msi to Azure - ${{ parameters.architecture }}' | ||
inputs: | ||
SourcePath: '$(BuildInfoPath)' | ||
azureSubscription: '$(AzureFileCopySubscription)' | ||
Destination: AzureBlob | ||
storage: '$(StorageAccount)' | ||
ContainerName: 'BuildInfo' | ||
condition: and(succeeded(), eq(variables['IS_DAILY'], 'true')) | ||
|
||
- task: AzureCLI@1 | ||
displayName: 'Make blob public' | ||
inputs: | ||
azureSubscription: '$(AzureFileCopySubscription)' | ||
scriptLocation: inlineScript | ||
inlineScript: 'az storage container set-permission --account-name $(StorageAccount) --name $(azureVersion) --public-access blob' | ||
condition: and(succeeded(), eq(variables['IS_DAILY'], 'true')) | ||
|
||
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 | ||
displayName: 'Component Detection' | ||
inputs: | ||
sourceScanPath: '$(Build.SourcesDirectory)' | ||
snapshotForceEnabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.