Skip to content

Commit

Permalink
#475 fix 'upload_to_blob' stage
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSAMPERE committed Apr 12, 2024
1 parent 4a9c8a9 commit 0e80a34
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,14 @@ stages:
vmImage: "ubuntu-latest"
condition: and(succeeded(), or(eq(variable.isProd, true), eq(variable.isQA, true), eq(variable.isDebug, true)))
dependsOn : set_zip_name_variable
variables :
zipName : $[ stageDependencies.set_zip_name_variable.set_zip_name_variable.outputs['set_zip_name_variable.ZIPNAME'] ]
jobs:
- job: upload_to_blob
displayName: "Upload to ${{ variables.ZIPNAME }} Blob Storage"
steps:
- template : /on-premises/upload_to_blob.yml@templates
parameters :
zipName : $[ stageDependencies.set_zip_name_variable.set_zip_name_variable.outputs['set_zip_name_variable.ZIPNAME'] ].zip
artifactName : "PACKAGED_$(Build.SourceBranchName)_$(Build.BuildId)"
DependsOn : integration
- template : /on-premises/upload_to_blob.yml@templates
parameters :
zipName : $(zipName).zip
artifactName : "PACKAGED_$(Build.SourceBranchName)_$(Build.BuildId)"
DependsOn : integration

# - stage: PublishToAzure
# displayName: "Publish to Azure"
Expand Down

0 comments on commit 0e80a34

Please sign in to comment.