Skip to content

Commit 43598fc

Browse files
authored
[skip-changelog] Correctly remove unneded artifacts (#2682)
The previous 'name' value `${{ env.CONFIGURATIONS_ARTIFACT }}` would not match the name of the produced intermediate artifacts. The correct pattern is `${{ env.CONFIGURATIONS_ARTIFACT }}-*`.
1 parent cbec871 commit 43598fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sync-labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
- name: Remove unneeded artifact
119119
uses: geekyeggo/delete-artifact@v5
120120
with:
121-
name: ${{ env.CONFIGURATIONS_ARTIFACT }}
121+
name: ${{ env.CONFIGURATIONS_ARTIFACT }}-*
122122

123123
- name: Merge label configuration files
124124
run: |

0 commit comments

Comments
 (0)