Skip to content

Commit

Permalink
Commit ExamProCo#33.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vadzim-kuzmich authored Aug 18, 2024
1 parent 1c447d6 commit a61cfca
Showing 1 changed file with 30 additions and 27 deletions.
57 changes: 30 additions & 27 deletions .github/workflows/contexts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
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 }}

0 comments on commit a61cfca

Please sign in to comment.