Skip to content

Commit

Permalink
Build the latest master code (surge-synthesizer#390)
Browse files Browse the repository at this point in the history
Former-commit-id: e98669a278c39b063f72f9bbe47ac246d703a437 [formerly 1bf261c]
Former-commit-id: b0d04f37ec0a9ac140a2ff493e360be8b62bbe70
Former-commit-id: 40fc8d486d4856b2501adef24ebd88576fb1dcef
  • Loading branch information
kzantow authored Jan 28, 2019
1 parent 600c136 commit b393d2e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,24 @@ jobs:
condition: variables.isMac
displayName: Publish macOS DMG

- job: NotifyReleases
dependsOn: Build
condition: succeeded()

steps:
- checkout: none

- task: DownloadSecureFile@1
inputs:
secureFile: notify-releases.sh

- bash: |
if ! [[ $SURGE_BRANCH =~ ^(master|release/.+)$ ]]; then
exit
fi
echo "Notifying releases..."
sh $AGENT_TEMPDIRECTORY/notify-releases.sh
displayName: Notify Releases

0 comments on commit b393d2e

Please sign in to comment.