Skip to content

Commit fa91117

Browse files
committed
fix(workflows): allow missing artifacts for partial manifest downloads
Signed-off-by: Adilhusain Shaikh <[email protected]>
1 parent 2b96d83 commit fa91117

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release-latest-python-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ jobs:
8989
token: ${{ secrets.GITHUB_TOKEN }}
9090

9191
- name: Download partial manifest artifacts # Pull the short-lived JSON blobs produced by the release job
92+
continue-on-error: true # Missing artifacts just mean no new manifests
9293
uses: actions/download-artifact@v4
9394
with:
9495
path: manifest-parts
9596
pattern: manifest-part-*
9697
merge-multiple: true
97-
allow-missing-artifacts: true
9898

9999
- name: Set up Python
100100
uses: actions/setup-python@v5

.github/workflows/release-matching-python-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@ jobs:
118118
token: ${{ secrets.GITHUB_TOKEN }}
119119

120120
- name: Download partial manifest artifacts # Pull manifest-part-* artifacts from successful release jobs
121+
continue-on-error: true # Some matrix legs may fail and omit artifacts
121122
uses: actions/download-artifact@v4
122123
with:
123124
path: manifest-parts
124125
pattern: manifest-part-*
125126
merge-multiple: true
126-
allow-missing-artifacts: true # Some matrix legs may fail and omit artifacts
127127

128128
- name: Set up Python
129129
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)