mirror of https://github.com/tiangolo/fastapi.git
🔊 Add debugging logs for GitHub actions to introspect GitHub hidden context (#1764)
This commit is contained in:
parent
6c9dca55bc
commit
0f0af751e4
|
|
@ -7,6 +7,10 @@ jobs:
|
|||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- name: Dump GitHub context
|
||||
env:
|
||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
run: echo "$GITHUB_CONTEXT"
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v1
|
||||
|
|
|
|||
|
|
@ -9,6 +9,10 @@ jobs:
|
|||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Dump GitHub context
|
||||
env:
|
||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
run: echo "$GITHUB_CONTEXT"
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v1
|
||||
|
|
|
|||
Loading…
Reference in New Issue