Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.26 KB

README.md

File metadata and controls

50 lines (35 loc) · 1.26 KB

Delete Artifacts

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.

Compatibility

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

Usage

See action.yml

Delete a Single Artifact

steps:
- uses: joutvhu/delete-artifact@v2
  with:
    name: my-artifact

Delete Multiple Artifacts

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

Delete All Artifacts

If you don't specify an artifact name this Action will be deleted all found artifacts

steps:
- uses: joutvhu/delete-artifact@v2