playing with workflow summary

This commit is contained in:
Jean-Christian Denis 2024-12-03 00:13:12 +01:00
parent 3336834daf
commit 6581639086
Signed by: JcDenis
GPG key ID: 1B5B8C5B90B6C951

View file

@ -42,13 +42,13 @@ jobs:
- name: notfound
if: (steps.repository.outputs.exists == 'false')
run: |
SUMMARY=$'Repository tag ${{ steps.dotclear.outputs.version }} not found.\nLaunching next job.'
SUMMARY=$'${{ github.repository }} repository tag ${{ steps.dotclear.outputs.version }} not found.\nLaunching next job.'
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
- name: found
if: (steps.repository.outputs.exists == 'true')
run: |
SUMMARY=$'Repository tag ${{ steps.dotclear.outputs.version }} found.\nStopping workflow.'
SUMMARY=$'${{ github.repository }} repository tag ${{ steps.dotclear.outputs.version }} found.\nStopping workflow.'
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
do_release: