Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nik-webdevelop authored May 27, 2024
1 parent e6de633 commit 70180b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ 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: |
var=12345
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

0 comments on commit 70180b0

Please sign in to comment.