Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

NFIBrokerage/delete-artifact

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

delete-artifact

A GitHub Action for deleting artifacts.

See also upload-artifact and download-artifact.

Usage

steps:
- name: Checkout
  uses: actions/checkout@v2

# create your artifact
# ...
# store you artifact:

- name: Store my artifact
  uses: actions/upload-artifact@v1
  with:
    name: my-artifact
    path: path/to/my/artifact.tar.gz

# use that artifact in a later job or step:

- name: Download my artifact
  uses: actions/download-artifact@v1
  with:
    name: my-artifact
    path: ./

# use your artifact
# ...
# clean up that artifact after downloading it

- name: Delete artifact
  uses: NFIBrokerage/delete-artifact@v1
  with:
    name: my-artifact

About

A GitHub Action for deleting artifacts

Resources

License

Stars

Watchers

Forks

Packages

No packages published