Releases: GeekyEggo/delete-artifact
Releases · GeekyEggo/delete-artifact
v5.1.0
- Mark deprecated token parameter as optional.
- Bump undici dependency.
v5.0.0
- Switch to @actions/artifact, removing the need for a
token
parameter (Sebastian Weigand) #24
v4.1.0
- Add default token.
- Fix over-arching
catch
output; errors now correctly result in a failed run (@TheMrMilchmann).
v4.0.0 Support for actions/upload-artifact@v4
- Add support for artifacts uploaded with
actions/upload-artifact@v4
. - Add requirement of
token
with read and write access to actions. - Update requests to use GitHub REST API.
- Deprecate support for
actions/upload-artifact@v1
,actions/upload-artifact@v2
, andactions/upload-artifact@v3
(please usegeekyeggo/delete-artifact@v2
).
v2.0.0 Glob support
🚨 Breaking
- Artifact names are now matched using glob pattern matching by default.
⭐ Added
- Add support for glob pattern matching (fulfilled by minimatch).
♻ Changed
- Updated action to use node v16
- Updated dependencies.
🏠 Housekeeping
- Action is now written in TypeScript.
v1.0.0 Preview Release
v1.0.0
- Initial release of
delete-artifact
workflow action. name
; the artifact(s) to delete (created within the same workflow).failOnError
; whenfalse
the action will always succeed (non-critical).
Usage
- uses: geekyeggo/delete-artifact@v1
with:
name: my-artifact
failOnError: true # optional, default true