From a8c41b82963e659f8c1ba4e436e88f7cd16ad0ac Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Thu, 11 Jul 2024 10:46:29 -0400 Subject: [PATCH] Only download .yaml artifacts in promote The updated docker build-push action is now uploading build results as GitHub artifacts automatically. These break when download-artifacts is used in the "download all" style. We could disable those artifacts, but it's better to be more specific in the download, IMO. https://github.com/docker/build-push-action/issues/1167 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d0083c4..57eccf68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -180,6 +180,8 @@ jobs: steps: - uses: actions/download-artifact@v4 + with: + pattern: "**/*.yaml" - name: Build manifest run: | cat **/*.yaml > restylers.yaml