about summary refs log blame commit diff
path: root/.github/workflows/print-env-vars.yaml
blob: e0e5fa48df2e07735e033ddcdab89588728c3469 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                               
name: Printing env variables

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    name: printer
    steps:
      - name: Print GitHub context
        env:
          GITHUB_CONTEXT: ${{ toJson(github) }}
        run: echo "$GITHUB_CONTEXT"
      - name: Print github_sha
        run: echo "$GITHUB_SHA"