Skip to content

Commit ebd922b

Browse files
author
Yair Morgenstern
committed
2.10.0
1 parent bddccc1 commit ebd922b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [2.10.0] - 2025-06-21
4+
- Adds the ability to disable duplicate check, for lower Github API usage - [#142](https://github.com/svenstaro/upload-release-action/pull/142) (thanks @colinsullivan)
5+
36
## [2.9.1] - 2025-06-21
47
- Fixed development + CI, updated dependencies [#137](https://github.com/svenstaro/upload-release-action/pull/137)
58

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Optional Arguments
1818
- `file_glob`: If set to true, the `file` argument can be a glob pattern (`asset_name` is ignored in this case) (Default: `false`)
1919
- `overwrite`: If an asset with the same name already exists, overwrite it (Default: `false`).
2020
- `check_duplicates`: Check for existing assets with the same name. Disabling removes this validity check, and allows reduced Github API usage when there are a large number of files (Default: `true`).
21+
- Note that this will cause reuploads of the same file to fail - for that, use `overwrite` instead.
2122
- `promote`: If a prerelease already exists, promote it to a release (Default: `false`).
2223
- `draft`: Sets the release as a draft instead of publishing it, allowing you to make any edits needed before releasing (Default: `false`).
2324
- `prerelease`: Mark the release as a pre-release (Default: `false`).

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "upload-release-action",
3-
"version": "2.9.1",
3+
"version": "2.10.0",
44
"private": true,
55
"description": "Upload files to a GitHub release",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)