diff options
| author | 2019-06-23 12:05:29 -0700 | |
|---|---|---|
| committer | 2019-06-29 20:05:35 -0700 | |
| commit | 0bca1ddfd1e1a9d7dc1702259071c48dc345310b (patch) | |
| tree | 09b6c1a331ef99fd07f861ef39a4a5af66f7f3b3 | |
| parent | Use v1 of task (diff) | |
DownloadPipelineArtifact
pls work
| -rw-r--r-- | azure-pipelines.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8dcb127..b6316a8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,6 +10,7 @@ jobs: steps: - script: docker build -t pythondiscord/snekbox-base:latest -f docker/base.Dockerfile . displayName: 'Build Base Image' + enabled: false - script: | id="$(docker images -q --no-trunc pythondiscord/snekbox-base:latest)" @@ -20,8 +21,19 @@ jobs: printf '%s' "${id}" >> base.sha256 displayName: 'Create Digest Artifact' + enabled: false - task: PublishPipelineArtifact@1 inputs: path: base.sha256 artifact: base_id + enabled: false + + - task: DownloadPipelineArtifact@2 + inputs: + buildType: 'specific' + project: $(System.TeamProject) + pipelineId: $(System.DefinitionId) + runId: 2434 + artifactName: base_id + downloadPath: . |