|
29 | 29 | name: DEBUG - context |
30 | 30 | runs-on: ubuntu-latest |
31 | 31 | steps: |
32 | | - - run: echo 'github event='"'"'${{ toJson(github.event) }}'"'" |
| 32 | + - run: | |
| 33 | + echo '{' |
| 34 | + echo '"github.action": ${{ toJson(github.action) }},' |
| 35 | + echo '"github.action_path": ${{ toJson(github.action_path) }},' |
| 36 | + echo '"github.action_ref": ${{ toJson(github.action_ref) }},' |
| 37 | + echo '"github.action_repository": ${{ toJson(github.action_repository) }},' |
| 38 | + echo '"github.action_status": ${{ toJson(github.action_status) }},' |
| 39 | + echo '"github.actor": ${{ toJson(github.actor) }},' |
| 40 | + echo '"github.actor_id": ${{ toJson(github.actor_id) }},' |
| 41 | + echo '"github.base_ref": ${{ toJson(github.base_ref) }},' |
| 42 | + echo '"github.event": ${{ toJson(github.event) }},' |
| 43 | + echo '"github.event_name": ${{ toJson(github.event_name) }},' |
| 44 | + echo '"github.event_path": ${{ toJson(github.event_path) }},' |
| 45 | + echo '"github.head_ref": ${{ toJson(github.head_ref) }},' |
| 46 | + echo '"github.job": ${{ toJson(github.job) }},' |
| 47 | + echo '"github.path": ${{ toJson(github.path) }},' |
| 48 | + echo '"github.ref": ${{ toJson(github.ref) }},' |
| 49 | + echo '"github.ref_name": ${{ toJson(github.ref_name) }},' |
| 50 | + echo '"github.ref_protected": ${{ toJson(github.ref_protected) }},' |
| 51 | + echo '"github.ref_type": ${{ toJson(github.ref_type) }},' |
| 52 | + echo '"github.repository": ${{ toJson(github.repository) }},' |
| 53 | + echo '"github.repository_id": ${{ toJson(github.repository_id) }},' |
| 54 | + echo '"github.repository_owner": ${{ toJson(github.repository_owner) }},' |
| 55 | + echo '"github.repository_owner_id": ${{ toJson(github.repository_owner_id) }},' |
| 56 | + echo '"github.repositoryUrl": ${{ toJson(github.repositoryUrl) }},' |
| 57 | + echo '"github.run_id": ${{ toJson(github.run_id) }},' |
| 58 | + echo '"github.run_number": ${{ toJson(github.run_number) }},' |
| 59 | + echo '"github.run_attempt": ${{ toJson(github.run_attempt) }},' |
| 60 | + echo '"github.sha": ${{ toJson(github.sha) }},' |
| 61 | + echo '"github.triggering_actor": ${{ toJson(github.triggering_actor) }},' |
| 62 | + echo '"github.workflow": ${{ toJson(github.workflow) }},' |
| 63 | + echo '"github.workflow_ref": ${{ toJson(github.workflow_ref) }},' |
| 64 | + echo '"github.workflow_sha": ${{ toJson(github.workflow_sha) }},' |
| 65 | + echo '"github.workspace": ${{ toJson(github.workspace) }}' |
| 66 | + echo '}' |
33 | 67 |
|
34 | 68 | debug-uploads: |
35 | 69 | name: DEBUG - Uploaders |
|
0 commit comments