diff --git a/.github/workflows/build-push-containers-all.yml b/.github/workflows/build-push-containers-all.yml index 738653a6b..8088a266d 100644 --- a/.github/workflows/build-push-containers-all.yml +++ b/.github/workflows/build-push-containers-all.yml @@ -20,9 +20,11 @@ jobs: steps: # I know this is not pretty (debug information) but it's useful to have this - name: Read github context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} run: | echo "INFO: github context object content below" - echo "${{ toJson(github) }}" + echo "${GITHUB_CONTEXT}" build-push-checked-containers: uses: ./.github/workflows/build-push-container.yml diff --git a/.github/workflows/checks-all.yml b/.github/workflows/checks-all.yml index 8438f718e..06aad1700 100755 --- a/.github/workflows/checks-all.yml +++ b/.github/workflows/checks-all.yml @@ -11,7 +11,18 @@ on: - '**' jobs: - + + read-github-context-object: + runs-on: buildjet-8vcpu-ubuntu-2404 + steps: + # I know this is not pretty (debug information) but it's useful to have this + - name: Read github context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: | + echo "INFO: github context object content below" + echo "${GITHUB_CONTEXT}" + build: strategy: matrix: @@ -26,11 +37,6 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - # I know this is not pretty (debug information) but it's useful to have this - - name: Read github context - run: | - echo "INFO: github context object content below" - echo "${{ toJson(github) }}" - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/hsm-demo-containers.yml b/.github/workflows/hsm-demo-containers.yml index 95a3201a0..541897964 100644 --- a/.github/workflows/hsm-demo-containers.yml +++ b/.github/workflows/hsm-demo-containers.yml @@ -1,4 +1,4 @@ -name: Build Push Containers +name: HSM Demo Build Push Containers on: pull_request: