fix(action): correct minor typo in action metadata (#14)

This commit is contained in:
2023-05-19 00:47:10 +01:00
committed by GitHub
parent 09a0ac2e59
commit f307f175b9
2 changed files with 4 additions and 5 deletions

View File

@@ -247,7 +247,7 @@ _Note: Outputs are not included in this equivalence example._
| id | Release ID. |
| name | Release name. |
| tag_name | Release tag name. |
| sha | Release sha |
| sha | Release SHA. |
| body | Release body. |
| html_url | Release URL. |
| draft | Whether or not the release is a draft. |

View File

@@ -7,8 +7,7 @@ author: "jimeh"
inputs:
token:
description: >-
GitHub token used to authenticate.
description: "GitHub token used to authenticate."
required: false
default: ${{ github.token }}
app-id:
@@ -71,7 +70,7 @@ outputs:
description: "Release tag name."
value: ${{ steps.release-please.outputs.tag_name }}
sha:
description: "Release sha"
description: "Release SHA."
value: ${{ steps.release-please.outputs.sha }}
body:
description: "Release body."
@@ -126,7 +125,7 @@ runs:
permissions: ${{ inputs.permissions }}
private_key: ${{ inputs.private-key }}
repository: ${{ github.repository }}
- name: Determine which token to use
- name: resolve token
id: token
run: |-
echo "token=${APP_TOKEN:-$INPUT_TOKEN}" >> "$GITHUB_OUTPUT"