Browse Source
🔊 Add debugging logs for GitHub actions to introspect GitHub hidden context (#1764)
pull/1766/head
Sebastián Ramírez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
0 deletions
-
.github/workflows/build-docs.yml
-
.github/workflows/publish.yml
|
|
@ -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 |
|
|
|