Skip to content

Commit

Permalink
Merge pull request #21 from KevinRohn/docs-fixes
Browse files Browse the repository at this point in the history
fix: update output description and add shell comments text highlighting
  • Loading branch information
KevinRohn authored Feb 21, 2025
2 parents b9a3542 + ff54d88 commit 13e6c4f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ outputs:
author_json:
description: >
The `author_json` output from release. It's a multiline output, which is packed in a JSON object.
The output can be used with the `fromJSON` function `(steps.<id>.outputs.assets_array_json)`.
The output can be used with the `fromJSON` function `(steps.<id>.outputs.author_json)`.
value: ${{ steps.release_data.outputs.author_json }}

runs:
Expand All @@ -136,7 +136,7 @@ runs:
- name: Get release data
id: release_data
shell: bash
run: |
run: | # shell
echo "::group::Fetch data"
log_token_toggle=""
Expand Down Expand Up @@ -215,7 +215,7 @@ runs:
id: markdown_body
shell: bash
if: ${{ inputs.body-markdown-file-path != '' }}
run: |
run: | # shell
echo "::group::Create release markdown file"
log_token_toggle=""
Expand All @@ -242,7 +242,7 @@ runs:
id: release_asset_download
if: ${{ inputs.asset-file != '' }}
shell: bash
run: |
run: | # shell
echo "::group::Download release artifacts"
if [[ ! -d "${{ inputs.asset-output }}" ]]; then
echo "::error title=Asset output path does not exist.::No ouput path definied."
Expand Down Expand Up @@ -303,7 +303,7 @@ runs:
- name: show output values
shell: bash
run: |
run: | # shell
echo "::group::output values"
echo "INFO: Release url ${{ steps.release_data.outputs.url }}"
Expand Down

0 comments on commit 13e6c4f

Please sign in to comment.