Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kas-tle authored Dec 27, 2023
1 parent 61eabbe commit 501adde
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ Data about the previous release for each branch is stored under the `RELEASEACTI
appPrivateKey: ${{ secrets.RELEASE_APP_PK }} # The private key of the GitHub App in PEM format
```
Note that when using the `push` trigger, given this action creates a tag using a bot token, GitHub will retrigger this action since that is considered a push event. This is, of course, generally not the desired outcome. This can be avoided by specifying that the action should only run on push to branches:
```yaml
on:
push:
branches:
- "*"
```

### Inputs

| Input | Description | Default | Required |
Expand Down Expand Up @@ -58,4 +66,4 @@ Data about the previous release for each branch is stored under the `RELEASEACTI
| `releaseAPIURL` | The API URL of the release. |
| `releaseAssetsURL` | The asset URL for the release. |
| `releaseBrowserURL` | The browser URL of the release. |
| `uploadAssetsURL` | The asset upload URL for the release. |
| `uploadAssetsURL` | The asset upload URL for the release. |

0 comments on commit 501adde

Please sign in to comment.