From 6d13ee475dbeed9885a6cc31df4f2b457e6c64b2 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Mon, 10 Jun 2019 13:41:52 -0700 Subject: [PATCH] Correct artifact return url for python/js The recent change to return the artifact URLs for python/js builds omitted the artifacts/ directory from the URL. Change-Id: If86749533e73dbfd17317acba22dbd05dff34abb --- playbooks/python/tarball-post.yaml | 2 +- roles/fetch-javascript-content-tarball/tasks/main.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/python/tarball-post.yaml b/playbooks/python/tarball-post.yaml index 51442d5c2..a95e85458 100644 --- a/playbooks/python/tarball-post.yaml +++ b/playbooks/python/tarball-post.yaml @@ -46,6 +46,6 @@ zuul: artifacts: - name: "python_wheel" - url: "{{ item.path | basename }}" + url: "artifacts/{{ item.path | basename }}" metadata: type: python_wheel diff --git a/roles/fetch-javascript-content-tarball/tasks/main.yaml b/roles/fetch-javascript-content-tarball/tasks/main.yaml index 1eddd9d00..31d84a33a 100644 --- a/roles/fetch-javascript-content-tarball/tasks/main.yaml +++ b/roles/fetch-javascript-content-tarball/tasks/main.yaml @@ -51,6 +51,6 @@ zuul: artifacts: - name: javascript_content - url: "{{ item.path | basename }}" + url: "artifacts/{{ item.path | basename }}" metadata: type: javascript_content