Skip to content

Commit

Permalink
[skip-changelog] Correctly remove unneded artifacts (#2682)
Browse files Browse the repository at this point in the history
The previous 'name' value `${{ env.CONFIGURATIONS_ARTIFACT }}` would not
match the name of the produced intermediate artifacts.
The correct pattern is `${{ env.CONFIGURATIONS_ARTIFACT }}-*`.
  • Loading branch information
cmaglie authored Jul 31, 2024
1 parent cbec871 commit 43598fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Remove unneeded artifact
uses: geekyeggo/delete-artifact@v5
with:
name: ${{ env.CONFIGURATIONS_ARTIFACT }}
name: ${{ env.CONFIGURATIONS_ARTIFACT }}-*

- name: Merge label configuration files
run: |
Expand Down

0 comments on commit 43598fc

Please sign in to comment.