Skip to content

Instantly share code, notes, and snippets.

@kylermintah
Last active January 8, 2024 07:53
Show Gist options
  • Save kylermintah/8e4eaaa7a0c4436661a6fe04a0131afc to your computer and use it in GitHub Desktop.
Save kylermintah/8e4eaaa7a0c4436661a6fe04a0131afc to your computer and use it in GitHub Desktop.
Azure DevOps Pipelines Build & Release with YAML Templates πŸš€ (main pipeline)
# File: azure-pipelines.yaml
# This is the top-level YAML file that will orchestrate the pipeline
trigger:
- main
pool:
vmImage: 'ubuntu-latest'
stages:
- template: pipeline-templates/build.yaml
- template: pipeline-templates/release.yaml
parameters:
AdminPassword: $(AdminPassword)
AdminTestPassword: $(AdminTestPassword)
HostingPlan: $(HostingPlan)
ServerName: $(ServerName)
WebsiteName: $(WebsiteName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment