Created
September 15, 2019 20:54
-
-
Save adamdriscoll/99c505531659521a6f9cf06d2d28c220 to your computer and use it in GitHub Desktop.
UDChatroom Azure Pipelines Deployment Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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