diff options
author | Vir Linden <60274682+vir-linden@users.noreply.github.com> | 2024-04-19 16:16:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 16:16:26 -0400 |
commit | 6ca4dfdb56d0107368a09af2b089c24d32e7108d (patch) | |
tree | ae751ef86f96c138de71cf8dca5da17616a2ef3f /.github/workflows/build.yaml | |
parent | a65de9354196984fc78b82a7505723ab7f916f97 (diff) |
Update build.yaml
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r-- | .github/workflows/build.yaml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 20078f2e00..ee02ed58e8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -59,8 +59,13 @@ jobs: - name: Checkout code uses: actions/checkout@v4 with: - ref: ${{ github.event.pull_request.head.sha || github.sha }} - + ref: ${{ github.event.pull_request.head.sha || github.sha }} + + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Setup python uses: actions/setup-python@v4 with: |