Skip to content

Commit

Permalink
fix(action): add release_body to action config outputs (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher authored Jun 8, 2024
1 parent 83ae70b commit 61eceaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
shell: bash
run: |
echo "publish_release: ${{ steps.action.outputs.publish_release }}"
echo "release_body: ${{ steps.action.outputs.release_body }}"
echo "release_commit: ${{ steps.action.outputs.release_commit }}"
echo "release_generate_release_notes: ${{ steps.action.outputs.release_generate_release_notes }}"
echo "release_tag: ${{ steps.action.outputs.release_tag }}"
Expand All @@ -96,7 +97,7 @@ jobs:

- name: Create Release
id: action
uses: LizardByte/create-release-action@master # keep this on master, to prevent endless depandabot PRs
uses: LizardByte/create-release-action@master # keep this on master, to prevent endless dependabot PRs
with:
allowUpdates: false
artifacts: ''
Expand Down
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ inputs:
outputs:
publish_release:
description: "Whether to publish a release."
release_body:
description: "The body for the release."
release_commit:
description: "The commit hash for the release."
release_generate_release_notes:
Expand Down

0 comments on commit 61eceaf

Please sign in to comment.