From 8ca9dc68c719d6c8c0490b515e53740d9e454234 Mon Sep 17 00:00:00 2001 From: Vadzim Date: Sun, 18 Aug 2024 18:47:29 +0200 Subject: [PATCH] Commit 33#2 --- .github/workflows/contexts.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/contexts.yml b/.github/workflows/contexts.yml index 36b2dc79..f3905da5 100644 --- a/.github/workflows/contexts.yml +++ b/.github/workflows/contexts.yml @@ -16,4 +16,28 @@ jobs: - id: showing-workflow-context name: Showing Workflow Context run: | - echo ${{ github }} \ No newline at end of file + echo ${{ github }} + - id: showing-job-context + name: Showing Job Context + run: | + echo ${{ job }} + - id: showing-jobs-context + name: Showing Jobs Context + run: | + echo ${{ jobs }} + - 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-var-context + name: Showing Var Context + run: | + echo ${{ var }} \ No newline at end of file