Unverified Commit 43598fc8 authored by Cristian Maglie's avatar Cristian Maglie Committed by GitHub

[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 }}-*`.
parent cbec8711
......@@ -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: |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment