diff --git a/.github/workflows/commands.yml b/.github/workflows/commands.yml index a8ea4fc16..94dbb14c8 100644 --- a/.github/workflows/commands.yml +++ b/.github/workflows/commands.yml @@ -12,7 +12,7 @@ jobs: - name: debug run: echo "::debug::Test debug message" - name: error - run: echo "::error file=Readme.md,line=2,endColumn=5::Test error message" + run: echo "::error file=/Readme.md,line=2,endColumn=5::Test error message" - name: masking id: masking run: | @@ -20,14 +20,14 @@ jobs: echo "::add-mask::$var" touch test.txt echo $var >> test.txt - echo "KEY=$($var)" >> $GITHUB_OUTPUT + echo "KEY=$var" >> $GITHUB_OUTPUT - name: print masking run: | cat test.txt echo $KEY - name: job summary run: | - echo "*Summary*" >> $GITHUB_STEP_SUMMARY + echo "# *Summary*" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY - echo "- `point 1`" >> $GITHUB_STEP_SUMMARY + echo "- point 1" >> $GITHUB_STEP_SUMMARY echo "- point 2" >> $GITHUB_STEP_SUMMARY