From e3fc69d305b9af14656d3b6faad2b53b0fb9b1b1 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Tue, 27 Aug 2024 00:35:35 -0700 Subject: [PATCH] minor action tweaks (cherry picked from commit 73a5ae0f9b7e64f2c52d9928a9e3a7fc9d49555d) --- action.yaml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/action.yaml b/action.yaml index a411049..cb9730a 100644 --- a/action.yaml +++ b/action.yaml @@ -1,7 +1,5 @@ name: Yaclog -description: > - Get version information from a changelog, and optionally create a new release. - The `yaclog` command is made available for use in future steps. +description: Get version information from a changelog branding: icon: file-text color: orange @@ -54,14 +52,8 @@ runs: if: ${{ inputs.release }} run: yaclog release --yes --commit ${{ inputs.release }} - - name: Get Version Information + - name: Get Changelog Information id: yaclog-show shell: bash run: | - yaclog show ---gh-actions ${{ inputs.markdown && '--markdown' }} >> "$GITHUB_OUTPUT" - # output like so: - # name=Version 1.3.0 - # header=Version 1.3.0 - 2024-08-08 - # version=1.3.0 - # body_file={path to file containing version body} - # changelog={path to changelog} \ No newline at end of file + yaclog show ---gh-actions ${{ inputs.markdown && '--markdown' }} | tee -a "$GITHUB_OUTPUT" \ No newline at end of file