Skip to content

Commit

Permalink
🔧 (main.yml): update job names and add step to show release description
Browse files Browse the repository at this point in the history
Rename the job from "Create Summery" to "Show Summery" for clarity. Add a new step to display the release description in the GitHub Actions workflow. This improves the readability and provides more detailed information about the release directly in the workflow summary.
  • Loading branch information
MrHinsh committed Aug 15, 2024
1 parent bbd2af0 commit 2a65fba
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
runs-on: ubuntu-latest
needs: Setup
steps:
- name: "Create Summery"
- name: "Show Summery"
if: always()
shell: pwsh
id: nkdagility-summery
Expand All @@ -192,6 +192,15 @@ jobs:
- HasChanged_src: ${{needs.Setup.outputs.HasChanged_src}}
- HasChanged_docs: ${{needs.Setup.outputs.HasChanged_docs}}
- HasChanged_automation: ${{needs.Setup.outputs.HasChanged_automation}}
"@
echo $markdown >> $Env:GITHUB_STEP_SUMMARY
- name: "Show Release Description"
if: always()
shell: pwsh
id: nkdAgility_ReleaseDescription
continue-on-error: true
run: |
$markdown = @"
## nkdAgility_ReleaseDescription
${{needs.Setup.outputs.nkdAgility_ReleaseDescription}}
"@
Expand Down

0 comments on commit 2a65fba

Please sign in to comment.