Skip to content

Commit

Permalink
Use GITHUB_STEP_SUMMARY
Browse files Browse the repository at this point in the history
  • Loading branch information
j-coll committed Jul 7, 2023
1 parent 459f731 commit 1ea5f3e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/check-junit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,15 @@ jobs:
- name: Building string profiles to run
id: getter
run: |
echo "## Run JUNIT tests" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo " - input ref = ${{ inputs.ref }}" >> $GITHUB_STEP_SUMMARY
echo " - input mvn opts = ${{ inputs.mvn_opts }}" >> $GITHUB_STEP_SUMMARY
if [ -f "./.github/workflows/scripts/get_profiles.sh" ]; then
chmod +x ./.github/workflows/scripts/get_profiles.sh
echo "profiles=$(./.github/workflows/scripts/get_profiles.sh ${{ inputs.short_tests }} ${{ inputs.medium_tests }} ${{ inputs.long_tests }})" >> $GITHUB_OUTPUT
profiles="$(./.github/workflows/scripts/get_profiles.sh ${{ inputs.short_tests }} ${{ inputs.medium_tests }} ${{ inputs.long_tests }})"
echo "profiles=${profiles}" >> $GITHUB_OUTPUT
echo " - profiles = ${profiles}" >> $GITHUB_STEP_SUMMARY
fi
echo_log:
Expand Down

0 comments on commit 1ea5f3e

Please sign in to comment.