Skip to content

Instantly share code, notes, and snippets.

@adamdriscoll
Created September 15, 2019 20:54
Show Gist options
  • Save adamdriscoll/99c505531659521a6f9cf06d2d28c220 to your computer and use it in GitHub Desktop.
Save adamdriscoll/99c505531659521a6f9cf06d2d28c220 to your computer and use it in GitHub Desktop.
UDChatroom Azure Pipelines Deployment Script
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- script: pwsh -File './deploy.ps1' -Staging $(Build.ArtifactStagingDirectory)
displayName: 'Copy and Download UDs'
# Publish Pipeline Artifact
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'ChatRoom'
targetPath: $(Build.ArtifactStagingDirectory)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment