From a61cfca7e68708466adb7d696e8d6601e4ab9579 Mon Sep 17 00:00:00 2001 From: Vadzim Date: Sun, 18 Aug 2024 19:00:07 +0200 Subject: [PATCH] Commit #33.5 --- .github/workflows/contexts.yml | 57 ++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 27 deletions(-) diff --git a/.github/workflows/contexts.yml b/.github/workflows/contexts.yml index b190132c..98457bb6 100644 --- a/.github/workflows/contexts.yml +++ b/.github/workflows/contexts.yml @@ -15,31 +15,34 @@ jobs: steps: - id: showing-workflow-context name: Showing Workflow Context + env: + GITHUB_CONTEXT_JSON: ${{ toJson(github) }} run: | - echo ${{ github }} - echo $GITHUB_CONTEXT - - id: showing-job-context - name: Showing Job Context - run: | - echo ${{ job }} - echo $JOB_CONTEXT - - id: showing-steps-context - name: Showing Steps Context - run: | - echo ${{ steps }} - - id: showing-runner-context - name: Showing Runner Context - run: | - echo ${{ runner }} - - id: showing-env-context - name: Showing Env Context - run: | - echo ${{ env }} - - id: showing-vars-context - name: Showing Vars Context - run: | - echo ${{ vars }} - - id: showing-secrets-context - name: Showing Secrets Context - run: | - echo ${{ secrets }} \ No newline at end of file + echo "${{ github }}" + echo "$GITHUB_CONTEXT" + echo "$GITHUB_CONTEXT_JSON" + # - id: showing-job-context + # name: Showing Job Context + # run: | + # echo ${{ job }} + # echo $JOB_CONTEXT + # - id: showing-steps-context + # name: Showing Steps Context + # run: | + # echo ${{ steps }} + # - id: showing-runner-context + # name: Showing Runner Context + # run: | + # echo ${{ runner }} + # - id: showing-env-context + # name: Showing Env Context + # run: | + # echo ${{ env }} + # - id: showing-vars-context + # name: Showing Vars Context + # run: | + # echo ${{ vars }} + # - id: showing-secrets-context + # name: Showing Secrets Context + # run: | + # echo ${{ secrets }} \ No newline at end of file