Skip to content

Commit

Permalink
Merge pull request #24 from devilbox/release-0.1.33
Browse files Browse the repository at this point in the history
Add debug output to configure job
  • Loading branch information
cytopia authored Mar 30, 2022
2 parents f89e42c + e09e093 commit 245f6b9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker-multistage-configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,29 @@ jobs:
# Debug
# ------------------------------------------------------------

- name: "[DEBUG] Show GitHub Context"
shell: bash
run: |
echo 'Context | Value'
echo '-------------------------------------|-----------------------------------'
echo 'github.actor | ${{ github.actor }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.repository_owner | ${{ github.repository_owner }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.event.pull_request.user.login | ${{ github.event.pull_request.user.login }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.event_name | ${{ github.event_name }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.ref_name | ${{ github.ref_name }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.head_ref | ${{ github.head_ref }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.base_ref | ${{ github.base_ref }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.ref_type | ${{ github.ref_type }}'
echo '-------------------------------------|-----------------------------------'
echo 'github.repository | ${{ github.repository }}'
- name: "[DEBUG] Show Workflow Inputs"
shell: bash
run: |
Expand Down

0 comments on commit 245f6b9

Please sign in to comment.