From daaaa1d561309394f192f91ca56efd65e6ce8f8d Mon Sep 17 00:00:00 2001 From: Jay Zhang Date: Wed, 7 Feb 2024 13:41:15 +0000 Subject: [PATCH] doc: update --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cad357e..38e45f4 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ jobs: | retry | **Optional** | How many times retrying if upload fails. `3` by default. | | post_command | **Optional** | Extra command that will be executed for teardown work. e.g. you can use it to upload artifacts to AWS s3 or aliyun OSS | | compress_assets | **Optional** | `auto` default will produce a `zip` file for Windows and `tar.gz` for others. `zip` will force the use of `zip`. `OFF` will disable packaging of assets. | -| upload | **Optional** | Upload release or not upload. If you need to use subsequent workflow to process the file, you can choose not to upload the release. | +| upload | **Optional** | Upload release assets or not. It'll be useful if you'd like to use subsequent workflow to process the file, such as **signing it on macos**, and so on. | ### Output Parameters diff --git a/action.yml b/action.yml index 665bee8..f5adf41 100644 --- a/action.yml +++ b/action.yml @@ -100,7 +100,7 @@ inputs: required: false default: 'TRUE' upload: - description: 'Upload release or not upload' + description: 'Upload release assets or not' required: false default: 'TRUE'