We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8e5d3 commit b523bbaCopy full SHA for b523bba
Ev2Specs/ServiceGroupRoot/Shell/Run/Run.ps1
@@ -64,8 +64,14 @@ try {
64
65
#Publish SecretManagement to ACR
66
Write-Verbose -Verbose "Publish SecretManagement $secretManagementFileName to ACR $env:DESTINATION_ACR_NAME"
67
+
68
+ # public
69
$prefix = "public/psresource"
70
Publish-PSResource -Repository $env:DESTINATION_ACR_NAME -NupkgPath $secretManagementFileName -ModulePrefix $prefix -Confirm:$false
71
72
+ # unlisted
73
+ $prefix = "unlisted/psresource"
74
+ Publish-PSResource -Repository $env:DESTINATION_ACR_NAME -NupkgPath $secretManagementFileName -ModulePrefix $prefix -Confirm:$false
75
}
76
catch {
77
0 commit comments