diff options
| -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: . |