update readme

This commit is contained in:
Rob Herley 2024-01-18 13:44:36 -05:00
parent 49552fcb82
commit 40b3052821
No known key found for this signature in database
GPG Key ID: D1602042C3543B06
2 changed files with 7 additions and 1 deletions

View File

@ -93,6 +93,12 @@ For assistance with breaking changes, see [MIGRATION.md](docs/MIGRATION.md).
# For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads. # For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads.
# Optional. Default is '6' # Optional. Default is '6'
compression-level: compression-level:
# If true, an artifact with a matching name will be deleted before a new one is uploaded.
# If false, the action will fail if an artifact for the given name already exists.
# Does not fail if the artifact does not exist.
# Optional. Default is 'false'
overwrite:
``` ```
### Outputs ### Outputs

View File

@ -36,7 +36,7 @@ inputs:
default: '6' default: '6'
overwrite: overwrite:
description: > description: >
If true, an artifact matching name will be deleted before a new one is uploaded. If true, an artifact with a matching name will be deleted before a new one is uploaded.
If false, the action will fail if an artifact for the given name already exists. If false, the action will fail if an artifact for the given name already exists.
Does not fail if the artifact does not exist. Does not fail if the artifact does not exist.
default: 'false' default: 'false'