Debugging Action #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Debugging Action | |
on: | |
workflow_dispatch: | |
jobs: | |
hello-world: | |
runs-on: ubuntu-latest | |
environment: dev | |
steps: | |
- name: Matrix run | |
run: | | |
echo "The github context is:" >> $GITHUB_STEP_SUMMARY | |
echo '```json' >> $GITHUB_STEP_SUMMARY | |
cat <<EOF >> $GITHUB_STEP_SUMMARY | |
${{ toJson(github) }} | |
EOF | |
echo '```' >> $GITHUB_STEP_SUMMARY |