We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0718463 commit f3b21d8Copy full SHA for f3b21d8
azure-pipelines.yml
@@ -2,7 +2,14 @@ variables:
2
MYSQL_ROOT_PASSWORD: mysql_root_pwd
3
MYSQL_HOST: '127.0.0.1'
4
MYSQL_PORT: '3306'
5
+
6
trigger:
7
+ branches:
8
+ exclude:
9
+ - master
10
+ tags:
11
+ include:
12
+ - '*'
13
paths:
14
exclude:
15
- '*.md'
@@ -49,7 +56,7 @@ stages:
49
56
goals: 'package'
50
57
- task: GithubRelease@0
51
58
displayName: ‘Create GitHub Release’
52
- condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/v')
59
+ condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))
53
60
inputs:
54
61
githubConnection: KarlConnection
55
62
repositoryName: DiamondLightSource/gda-ispyb-api
0 commit comments