Skip to content

Commit 9bf74a8

Browse files
committed
Bump version to v1.3.1
1 parent f0f5a6d commit 9bf74a8

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Diff for: README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ It is meant as a replacement for the `update-release` GitHub action and brings m
5353

5454
### Changelog:
5555

56+
v1.3.1
57+
58+
Changes include:
59+
60+
- Fixed bug that caused releases with more than 100 assets to not be updated correctly
61+
62+
Thank you to our contributors:
63+
64+
- beyarkay
65+
5666
v1.3.0
5767

5868
Changes include:
@@ -92,7 +102,7 @@ Stale repo [johnwbyrd/update-release](https://github.com/johnwbyrd/update-releas
92102
Insert the following into the appropriate step in your `.github/workflows/*.yml` file:
93103

94104
- name: Update release
95-
uses: IsaacShelton/[email protected].0
105+
uses: IsaacShelton/[email protected].1
96106
with:
97107
token: ${{ secrets.GITHUB_TOKEN }}
98108
files: ./file-to-release.zip dist/other-file-to-release.exe README.md
@@ -104,7 +114,7 @@ Insert the following into the appropriate step in your `.github/workflows/*.yml`
104114
The `${{ secrets.GITHUB_TOKEN }}` is valid for exactly an hour from the time your build starts. If your build requires longer than an hour to run, you will need to [create your own access token](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line) with repo admin access, [store it as a secret](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets) in your own repository, and reference that secret token in your build:
105115

106116
- name: Update release
107-
uses: IsaacShelton/[email protected].0
117+
uses: IsaacShelton/[email protected].1
108118
with:
109119
token: ${{ secrets.YOUR_PRIVATE_SECRET_TOKEN }}
110120
release: Nightly

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "update-existing-release",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "A smarter way to make fresh build assets continuously available and edit releases, with Github actions",
55
"private": true,
66
"main": "./dist/main.js",

0 commit comments

Comments
 (0)