Profile picture

[Github Actions] Github Actions 내 Context 출력

JaehyoJJAng2023년 04월 15일

Github Actions 내 Context 출력

Github Actions를 사용하다보면 Actions 내에서 제공되는 Context가 존재한다.

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: Ouput actor
        run: |
          echo "actor -> ${{ github.actor }}"

actions 내에서 제공되는 Context가 뭐가 있는지 궁금한 경우 아래와 같이 시도해 볼 수 있겠다.

name: ouput context
run-name: Output Context 🌈
on: workflow_dispatch
jobs:
  context:
    runs-on: ubuntu-latest
    steps:
      - name: Ouput Github Context
        run: |
          echo "${{ toJSON(github) }}"

출력 결과

image

출력 결과 보러가기


Loading script...