Skip to content

Commit

Permalink
v4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thunder-coding committed Dec 29, 2022
1 parent a3ec65a commit 168f2ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

## [4.0.2] - 2022-12-29
- Prevent API overuse [#5](https://github.com/termux/upload-release-action/issues/5)

## [4.0.1] - 2022-12-28
- Target Node.js v18
- Target Node.js v18 (EVENTUALLY REVERTED as Node.js v18 is not available for actions usage)

## [4.0.0] - 2022-12-28
- Added `skip_of_no_glob_match` input paramater. Setting this to true will supress error when no files are to be uploaded when no file matches the glob.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Build
run: cargo build --release
- name: Upload binaries to release
uses: termux/upload-release-action@v3.0.3
uses: termux/upload-release-action@v4.0.2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/mything
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Build
run: cargo build --release --locked
- name: Upload binaries to release
uses: termux/upload-release-action@v3.0.3
uses: termux/upload-release-action@v4.0.2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/${{ matrix.artifact_name }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Build
run: cargo build --release
- name: Upload binaries to release
uses: termux/upload-release-action@v3.0.3
uses: termux/upload-release-action@v4.0.2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/my*
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
- name: Build
run: cargo build --release
- name: Upload binaries to release
uses: termux/upload-release-action@v3.0.3
uses: termux/upload-release-action@v4.0.2
with:
repo_name: owner/repository-name
# A personal access token for the GitHub repository in which the release will be created and edited.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "upload-release-action",
"version": "4.0.1",
"version": "4.0.2",
"private": true,
"description": "Upload files to a GitHub release",
"main": "lib/main.js",
Expand Down

0 comments on commit 168f2ef

Please sign in to comment.