add links to bug on disabled steps

This commit is contained in:
Collin M. Barrett 2019-09-27 16:47:10 -05:00
parent ef3c2aaf40
commit cf06ebb707
2 changed files with 8 additions and 5 deletions

View file

@ -116,6 +116,7 @@ steps:
additionalDockerComposeFiles: "docker-compose.prod.yml"
dockerComposeCommand: "build api"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237
- task: Docker@2
displayName: "tag build number"
@ -125,6 +126,7 @@ steps:
command: "tag"
arguments: "docker.pkg.github.com/collinbarrett/filterlists/filterlists.api:latest docker.pkg.github.com/collinbarrett/filterlists/filterlists.api:$(Build.BuildId)"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237
- task: Docker@2
displayName: "push"
@ -136,6 +138,7 @@ steps:
latest
$(Build.BuildId)
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237
- task: CopyFiles@2
displayName: "stage docker-compose files"
@ -148,7 +151,7 @@ steps:
CleanTargetFolder: true
OverWrite: true
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237
- task: PublishBuildArtifacts@1
displayName: "publish docker-compose files"
@ -157,4 +160,4 @@ steps:
ArtifactName: "drop"
publishLocation: "Container"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237

View file

@ -53,7 +53,7 @@ steps:
latest
$(Build.BuildId)
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237
- task: CopyFiles@2
displayName: "stage docker-compose files"
@ -66,7 +66,7 @@ steps:
CleanTargetFolder: true
OverWrite: true
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237
- task: PublishBuildArtifacts@1
displayName: "publish docker-compose files"
@ -75,4 +75,4 @@ steps:
ArtifactName: "drop"
publishLocation: "Container"
condition: "and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))"
enabled: false
enabled: false #TODO: enable after https://github.community/t5/GitHub-Actions/unknown-blob-error-when-i-m-trying-to-push-image-to-Github/m-p/32737/highlight/true#M1237