File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,34 @@ concurrency:
2222 cancel-in-progress : true
2323
2424jobs :
25+ dump_contexts_to_log :
26+ runs-on : ubuntu-latest
27+ steps :
28+ - name : Dump GitHub context
29+ env :
30+ GITHUB_CONTEXT : ${{ toJson(github) }}
31+ run : echo "$GITHUB_CONTEXT"
32+ - name : Dump job context
33+ env :
34+ JOB_CONTEXT : ${{ toJson(job) }}
35+ run : echo "$JOB_CONTEXT"
36+ - name : Dump steps context
37+ env :
38+ STEPS_CONTEXT : ${{ toJson(steps) }}
39+ run : echo "$STEPS_CONTEXT"
40+ - name : Dump runner context
41+ env :
42+ RUNNER_CONTEXT : ${{ toJson(runner) }}
43+ run : echo "$RUNNER_CONTEXT"
44+ - name : Dump strategy context
45+ env :
46+ STRATEGY_CONTEXT : ${{ toJson(strategy) }}
47+ run : echo "$STRATEGY_CONTEXT"
48+ - name : Dump matrix context
49+ env :
50+ MATRIX_CONTEXT : ${{ toJson(matrix) }}
51+ run : echo "$MATRIX_CONTEXT"
52+
2553 publish-to-test-pypi :
2654 name : " Publish to Test PyPI"
2755 if : ${{ github.event.client_payload.event_type == 'publish-testpypi' }}
You can’t perform that action at this time.
0 commit comments