workflows
This commit is contained in:
parent
a319adaed2
commit
33286316cb
2 changed files with 10 additions and 6 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
|
@ -167,6 +167,10 @@ jobs:
|
|||
- name: 📝 Generate Github Summary
|
||||
uses: WcAServices/markdown-template-action@v1.1.0
|
||||
with:
|
||||
variables: >-
|
||||
if [ -n "${{ steps.read_diff.outputs.diff != '' }}" ]; then
|
||||
DIFF="${{ steps.read_diff.outputs.diff }}"
|
||||
fi
|
||||
template: |
|
||||
📃 **Name**: ${{ steps.project_name.outputs.value }}
|
||||
📃 **Release**: ${{ steps.project_version.outputs.value }}
|
||||
|
|
@ -174,9 +178,7 @@ jobs:
|
|||
📃 **Game Version**: ${{ env.MINECRAFT_VERSION }}
|
||||
|
||||
${{ steps.changelog.outputs.description }}
|
||||
if [ -n "${{ steps.read_diff.outputs.diff != '' }}" ]; then
|
||||
${{ steps.read_diff.outputs.diff }}
|
||||
fi
|
||||
$DIFF
|
||||
|
||||
|
||||
build-modpack:
|
||||
|
|
|
|||
8
.github/workflows/pull.yml
vendored
8
.github/workflows/pull.yml
vendored
|
|
@ -166,6 +166,10 @@ jobs:
|
|||
- name: 📝 Generate Github Summary
|
||||
uses: WcAServices/markdown-template-action@v1.1.0
|
||||
with:
|
||||
variables: >-
|
||||
if [ -n "${{ steps.read_diff.outputs.diff != '' }}" ]; then
|
||||
DIFF="${{ steps.read_diff.outputs.diff }}"
|
||||
fi
|
||||
template: |
|
||||
📃 **Name**: ${{ steps.project_name.outputs.value }}
|
||||
📃 **Release**: ${{ steps.project_version.outputs.value }}
|
||||
|
|
@ -173,7 +177,5 @@ jobs:
|
|||
📃 **Game Version**: ${{ env.MINECRAFT_VERSION }}
|
||||
|
||||
${{ steps.changelog.outputs.description }}
|
||||
if [ -n "${{ steps.read_diff.outputs.diff != '' }}" ]; then
|
||||
${{ steps.read_diff.outputs.diff }}
|
||||
fi
|
||||
$DIFF
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue