Skip to content

Commit

Permalink
Only download .yaml artifacts in promote
Browse files Browse the repository at this point in the history
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.

docker/build-push-action#1167
  • Loading branch information
pbrisbin committed Jul 11, 2024
1 parent ae8815b commit a8c41b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ jobs:

steps:
- uses: actions/download-artifact@v4
with:
pattern: "**/*.yaml"
- name: Build manifest
run: |
cat **/*.yaml > restylers.yaml
Expand Down

0 comments on commit a8c41b8

Please sign in to comment.