Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAbides committed Aug 8, 2023
1 parent f0e146e commit 6cf0555
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/integration.yml
Expand Up @@ -144,6 +144,7 @@ jobs:
with:
go-version: '1.21'
ignore-local: true
debug: true
- name: outputs
run: |
echo '*********** env ************'
Expand All @@ -163,6 +164,7 @@ jobs:
with:
go-version: '1.21.0'
ignore-local: true
debug: true
- name: outputs
run: |
echo '*********** env ************'
Expand Down
7 changes: 6 additions & 1 deletion action.yml
Expand Up @@ -47,6 +47,11 @@ inputs:
of checking whether a newer version is available for download. With ignore-local, the
action will always check for a newer version available for download. Set this to any non-empty value
to enable.
debug:
required: false
description: |
Set this to any non-empty value to enable debug logging.
outputs:
GOCACHE:
description: output of `go env GOCACHE`
Expand All @@ -69,9 +74,9 @@ runs:
- id: run
working-directory: ${{ github.action_path }}
env:
DEBUG: ""
IGNORE_LOCAL_GO: ${{ inputs.ignore-local }}
GO_VERSION: ${{ inputs.go-version }}
DEBUG: ${{ inputs.debug }}
shell: bash
run: src/run
branding:
Expand Down

0 comments on commit 6cf0555

Please sign in to comment.