Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add a pipeline template to mark SDK package as released
  • Loading branch information
praveenkuttappan authored and azure-sdk committed Aug 20, 2025
commit 460e6a0478824717da42081f355a62f48d377f8c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
parameters:
ConfigFileDir: ''
PackageArtifactName: ''

steps:
- task: AzureCLI@2
inputs:
azureSubscription: opensource-api-connection
scriptType: pscore
scriptLocation: scriptPath
scriptPath: $(Build.SourcesDirectory)/eng/common/scripts/Mark-ReleasePlanCompletion.ps1
arguments: -PackageInfoFilePath '${{ parameters.ConfigFileDir }}/${{ parameters.PackageArtifactName }}.json'
workingDirectory: $(Pipeline.Workspace)
displayName: Mark package as released
continueOnError: true
condition: and(succeeded(), ne(variables['Skip.MarkReleaseCompletion'], 'true'))