beatejosefina / workflow-sandbox

Sandbox for testing out GitHub Actions logic / syntax

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

workflow-sandbox

Sandbox for testing GitHub Actions logic / syntax

Useful links:


Troubleshooting

Dump Context

To logg the GitHub Context, use the action in .github/actions/DumpContext, you can call the action (NOTE use limited to this repo) from your workflow using:

    - name: 'Dump GitHub context'
      uses: ./.github/actions/DumpContext

env

The env context contains environment variables that have been set in a workflow, job, or step. To logg these, use:

    - name: 'Log env context'
      run: env

About

Sandbox for testing out GitHub Actions logic / syntax