Skip to content

Commit 6248eef

Browse files
authored
fix(ci): fix broken nighly jobs (#659)
Fixes the broken nightly builds. Look at solved results [here](https://github.com/metatypedev/metatype/actions/runs/8533669013). #### Motivation and context Nightly builds were broken due to oversight during the #571 fixes. #### Migration notes __No changes required__ ### Checklist - [ ] The change come with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change
1 parent b48d719 commit 6248eef

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
touch "digests/prd/${digest#sha256:}"
5353
- uses: actions/upload-artifact@v4
5454
with:
55-
name: digests
55+
name: digests-${{ matrix.runner }}
5656
path: ./digests/*
5757
if-no-files-found: error
5858
retention-days: 1
@@ -72,7 +72,8 @@ jobs:
7272
steps:
7373
- uses: actions/download-artifact@v4
7474
with:
75-
name: digests
75+
pattern: digests-*
76+
merge-multiple: true
7677
path: ./digests
7778
- uses: docker/setup-buildx-action@v3
7879
- uses: docker/login-action@v3

0 commit comments

Comments
 (0)