Skip to content

Commit

Permalink
fix: wrong thing was printed in the action summary text
Browse files Browse the repository at this point in the history
  • Loading branch information
mhucka committed May 19, 2023
1 parent c763d10 commit 84f1009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ runs:
- name: Summarize the results.
shell: bash
run: |
echo \#\# Successfully archived release \"${{github.ref_name}}\" >> $GITHUB_STEP_SUMMARY
echo URL of the new InvenioRDM record: ${{env.record_url}} >> $GITHUB_STEP_SUMMARY
echo \#\# Successfully archived release \"${{env.tag}}\" >> $GITHUB_STEP_SUMMARY
echo URL of the new InvenioRDM record: ${{env.record_url}} >> $GITHUB_STEP_SUMMARY
if [ "${{inputs.draft || 'false'}}" != 'false' ]; then
echo "This is a **draft** record – it has not been finalized." >> $GITHUB_STEP_SUMMARY
fi
Expand Down

0 comments on commit 84f1009

Please sign in to comment.