Skip to content
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

[CI Environment] Enable 'Publish if not exists' + Fix for 'Publish latest' #2410

Merged
merged 40 commits into from
Dec 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
022cdf8
Added missing param handover
AlexanderSehr Dec 6, 2022
49fa2e3
Init
AlexanderSehr Dec 6, 2022
659c3f0
Further updates
AlexanderSehr Dec 6, 2022
1fbfb1b
Added template specs support
AlexanderSehr Dec 6, 2022
5bdb524
Further updates
AlexanderSehr Dec 6, 2022
d759d3f
Update to latest
AlexanderSehr Dec 6, 2022
e25c5bb
Updated Universal Packages fetch
AlexanderSehr Dec 6, 2022
073dd72
Bugfix & disabled pipeline parts
AlexanderSehr Dec 6, 2022
cfe426f
Adjusted header
AlexanderSehr Dec 7, 2022
748be33
Update to latest
AlexanderSehr Dec 7, 2022
b4e20b5
Update to latest
AlexanderSehr Dec 7, 2022
bf58ba4
Update to latest
AlexanderSehr Dec 7, 2022
2a5c6ef
Aligned pipelines
AlexanderSehr Dec 7, 2022
05efd5e
Small adjustment
AlexanderSehr Dec 7, 2022
da67c31
Adjusted feedname
AlexanderSehr Dec 7, 2022
bc8e145
Update to latest
AlexanderSehr Dec 7, 2022
6a8f40f
Update to latest
AlexanderSehr Dec 7, 2022
31a53d4
Update to latest
AlexanderSehr Dec 7, 2022
30ced13
Update to latest
AlexanderSehr Dec 7, 2022
af30397
Adjusted output
AlexanderSehr Dec 7, 2022
311446a
Update to latest
AlexanderSehr Dec 7, 2022
2ea09ca
Extended docs
AlexanderSehr Dec 7, 2022
aad13b3
Extended docs
AlexanderSehr Dec 7, 2022
914dcc4
Fixed output
AlexanderSehr Dec 7, 2022
1959726
Fixed GH passthru
AlexanderSehr Dec 7, 2022
199168c
Update to latest
AlexanderSehr Dec 7, 2022
96c7ef4
Update to latest
AlexanderSehr Dec 7, 2022
c0cbc83
Added output
AlexanderSehr Dec 7, 2022
47dd37e
Suppressed output
AlexanderSehr Dec 7, 2022
e18b4c4
Update to latest
AlexanderSehr Dec 7, 2022
0dd8d3d
Disabled most of the analysis services pipeline for teting
AlexanderSehr Dec 7, 2022
9762d84
Undid temp changes
AlexanderSehr Dec 7, 2022
8b61c1a
Added minor, major & latest to missing publishing
AlexanderSehr Dec 7, 2022
1024f3f
Disabled most of the analysis services pipeline for teting
AlexanderSehr Dec 7, 2022
096f01b
Update to latest
AlexanderSehr Dec 7, 2022
683d6f3
Update to latest
AlexanderSehr Dec 7, 2022
40ca3d8
Update to latest
AlexanderSehr Dec 7, 2022
5529489
Update .azuredevops/pipelineTemplates/jobs.publishModule.yml
AlexanderSehr Dec 7, 2022
b91423c
Merge branch 'main' into users/alsehr/2153_PublishIfNotExists
AlexanderSehr Dec 21, 2022
db84059
Updated docs
AlexanderSehr Dec 21, 2022
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
160 changes: 128 additions & 32 deletions .azuredevops/pipelineTemplates/jobs.publishModule.yml

Large diffs are not rendered by default.

99 changes: 83 additions & 16 deletions .github/actions/templates/publishModule/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
## | bicepRegistryRgName | false | '' | Required to publish to private bicep registry. Name of the container registry resource group | 'artifacts-rg' |
## | bicepRegistryRgLocation | false | '' | Required to publish to private bicep registry. Location of the container registry resource group | 'WestEurope' |
## | bicepRegistryDoPublish | false | 'false' | Flag to indicate whether or not to publish to the private bicep registry | 'true' |
## | publishLatest | false | 'true' | Flag to indicate whether or not to publish a "latest" version | 'true' |
## |===========================================================================================================================================================================================================|
##
##---------------------------------------------##
Expand Down Expand Up @@ -60,6 +61,10 @@ inputs:
description: 'Flag to indicate whether or not to publish to the private bicep registry'
default: 'false'
required: false
publishLatest:
description: 'Flag to indicate whether or not to publish a "latest" version'
default: 'true'
required: false

runs:
using: 'composite'
Expand Down Expand Up @@ -102,35 +107,66 @@ runs:

# Load used functions
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Get-ModulesToPublish.ps1')
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Publish-ModuleToTemplateSpec.ps1')
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Get-ModulesMissingFromTemplateSpecsRG.ps1')
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Publish-ModuleToTemplateSpecsRG.ps1')

$modulesToPublish = @()

################################
## Get modules to publish ##
################################
$functionInput = @{
TemplateFilePath = Join-Path $env:GITHUB_WORKSPACE "${{ inputs.templateFilePath }}"
PublishLatest = [bool] "${{ inputs.publishLatest }}"
}

Write-Verbose "Invoke task with" -Verbose
Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose

# Get the modified child resources
$ModulesToPublish = Get-ModulesToPublish @functionInput -Verbose
$modulesToPublish += Get-ModulesToPublish @functionInput -Verbose

#############################
## Get missing modules ##
#############################

# Add all modules that don't exist in the target location
$missingInputObject = @{
TemplateFilePath = Join-Path $env:GITHUB_WORKSPACE "${{ inputs.templateFilePath }}"
TemplateSpecsRGName = '${{ inputs.templateSpecsRgName }}'
PublishLatest = [bool] "${{ inputs.publishLatest }}"
}

# Publish the modified child resources
foreach ($ModuleToPublish in $ModulesToPublish) {
$RelPath = (($ModuleToPublish.TemplateFilePath).Split('/modules/')[-1]).Split('/deploy.')[0]
Write-Output "::group::$(' - [{0}] [{1}]' -f $RelPath, $ModuleToPublish.Version)"
Write-Verbose "Invoke Get-ModulesMissingFromTemplateSpecsRG with" -Verbose
Write-Verbose ($missingInputObject | ConvertTo-Json | Out-String) -Verbose

$missingModules = Get-ModulesMissingFromTemplateSpecsRG @missingInputObject

foreach($missingModule in $missingModules) {
if($modulsToPublish.TemplateFilePath -notcontains $missingModule.TemplateFilePath) {
$modulesToPublish += $missingModule
}
}

#################
## Publish ##
#################
foreach ($moduleToPublish in $modulesToPublish) {
$RelPath = (($moduleToPublish.TemplateFilePath).Split('/modules/')[-1]).Split('/deploy.')[0]
Write-Output "::group::$(' - [{0}] [{1}]' -f $RelPath, $moduleToPublish.Version)"

$functionInput = @{
TemplateFilePath = $ModuleToPublish.TemplateFilePath
TemplateFilePath = $moduleToPublish.TemplateFilePath
TemplateSpecsRgName = '${{ inputs.templateSpecsRgName }}'
TemplateSpecsRgLocation = '${{ inputs.templateSpecsRgLocation }}'
TemplateSpecsDescription = '${{ inputs.templateSpecsDescription }}'
ModuleVersion = $ModuleToPublish.Version
ModuleVersion = $moduleToPublish.Version
}

Write-Verbose "Invoke task with" -Verbose
Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose

Publish-ModuleToTemplateSpec @functionInput -Verbose
Publish-ModuleToTemplateSpecsRG @functionInput -Verbose
}

Write-Output '::endgroup::'
Expand All @@ -146,29 +182,60 @@ runs:

# Load used functions
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Get-ModulesToPublish.ps1')
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Get-ModulesMissingFromPrivateBicepRegistry.ps1')
. (Join-Path $env:GITHUB_WORKSPACE 'utilities' 'pipelines' 'resourcePublish' 'Publish-ModuleToPrivateBicepRegistry.ps1')

$modulesToPublish = @()

################################
## Get modules to publish ##
################################
$functionInput = @{
TemplateFilePath = Join-Path $env:GITHUB_WORKSPACE "${{ inputs.templateFilePath }}"
PublishLatest = [bool] "${{ inputs.publishLatest }}"
}

Write-Verbose "Invoke task with" -Verbose
Write-Verbose ($functionInput | ConvertTo-Json | Out-String) -Verbose

# Get the modified child resources
$ModulesToPublish = Get-ModulesToPublish @functionInput -Verbose
$modulesToPublish += Get-ModulesToPublish @functionInput -Verbose

#############################
## Get missing modules ##
#############################
# Add all modules that don't exist in the target location
$missingInputObject = @{
TemplateFilePath = Join-Path $env:GITHUB_WORKSPACE "${{ inputs.templateFilePath }}"
BicepRegistryName = '${{ inputs.bicepRegistryName }}'
BicepRegistryRgName = '${{ inputs.bicepRegistryRgName }}'
PublishLatest = [bool] "${{ inputs.publishLatest }}"
}

Write-Verbose "Invoke Get-ModulesMissingFromPrivateBicepRegistry with" -Verbose
Write-Verbose ($missingInputObject | ConvertTo-Json | Out-String) -Verbose

$missingModules = Get-ModulesMissingFromPrivateBicepRegistry @missingInputObject

foreach($missingModule in $missingModules) {
if($modulsToPublish.TemplateFilePath -notcontains $missingModule.TemplateFilePath) {
$modulesToPublish += $missingModule
}
}

# Publish the modified child resources
foreach ($ModuleToPublish in $ModulesToPublish) {
$RelPath = (($ModuleToPublish.TemplateFilePath).Split('/modules/')[-1]).Split('/deploy.')[0]
Write-Output "::group::$(' - [{0}] [{1}]' -f $RelPath, $ModuleToPublish.Version)"
#################
## Publish ##
#################
foreach ($moduleToPublish in $modulesToPublish) {
$RelPath = (($moduleToPublish.TemplateFilePath).Split('/modules/')[-1]).Split('/deploy.')[0]
Write-Output "::group::$(' - [{0}] [{1}]' -f $RelPath, $moduleToPublish.Version)"

$functionInput = @{
TemplateFilePath = $ModuleToPublish.TemplateFilePath
TemplateFilePath = $moduleToPublish.TemplateFilePath
BicepRegistryName = '${{ inputs.bicepRegistryName }}'
BicepRegistryRgName = '${{ inputs.bicepRegistryRgName }}'
BicepRegistryRgLocation = '${{ inputs.bicepRegistryRgLocation }}'
ModuleVersion = $ModuleToPublish.Version
ModuleVersion = $moduleToPublish.Version
}

Write-Verbose "Invoke task with" -Verbose
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ms.aad.domainservices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.analysisservices.servers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.apimanagement.service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.authorization.locks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.authorization.policyassignments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.authorization.policydefinitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.authorization.policyexemptions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.authorization.roleassignments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.authorization.roledefinitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.automation.automationaccounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.batch.batchaccounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.cache.redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.cognitiveservices.accounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.availabilitysets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.diskencryptionsets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.disks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.galleries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.virtualmachines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.compute.virtualmachinescalesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.consumption.budgets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.containerregistry.registries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.databricks.workspaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.datafactory.factories.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.dataprotection.backupvaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.dbforpostgresql.flexibleservers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.desktopvirtualization.hostpools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.documentdb.databaseaccounts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.eventgrid.systemtopics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.eventgrid.topics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.eventhub.namespaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
1 change: 1 addition & 0 deletions .github/workflows/ms.healthbot.healthbots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,4 @@ jobs:
bicepRegistryRGName: '${{ env.bicepRegistryRGName }}'
bicepRegistryRgLocation: '${{ env.bicepRegistryRgLocation }}'
bicepRegistryDoPublish: '${{ env.bicepRegistryDoPublish }}'
publishLatest: '${{ env.publishLatest }}'
Loading