This GitHub Action to delete artifacts from your build. This can be useful when you want to clean up artifacts that are no longer needed.
See also upload-artifact.
Important
delete-artifact@v2 is not currently supported on GHES yet. If you are on GHES, you must use v1.
actions/upload-artifact | joutvhu/delete-artifact |
---|---|
v1, v2, v3 | v1 |
v4 | v2 |
See action.yml
steps:
- uses: joutvhu/delete-artifact@v2
with:
name: my-artifact
Deleting multiple artifacts within a single action can be achieved by specifying each artifact name on a new line, this can improve performance when deleting more than one artifact.
steps:
- uses: joutvhu/delete-artifact@v2
with:
name: |
artifact-1
artifact-2
If you don't specify an artifact name
this Action will be deleted all found artifacts
steps:
- uses: joutvhu/delete-artifact@v2