Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added input parameter for ACTIONS_STEP_DEBUG #28

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/setup-tofu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
uses: actions/checkout@v4

- name: Setup OpenTofu - ${{ matrix['tofu-versions'] }}
env:
ACTIONS_STEP_DEBUG: $ACTIONS_STEP_DEBUG
uses: ./
with:
tofu_version: ${{ matrix['tofu-versions'] }}
Expand All @@ -50,6 +52,8 @@ jobs:
uses: actions/checkout@v4

- name: Setup OpenTofu
env:
ACTIONS_STEP_DEBUG: $ACTIONS_STEP_DEBUG
uses: ./
with:
tofu_wrapper: ${{ matrix['tofu-wrapper'] }}
Expand All @@ -73,6 +77,8 @@ jobs:
run: tofu fmt -check -list=true -no-color
tofu-run-local:
name: 'OpenTofu Run Local'
env:
ACTIONS_STEP_DEBUG: $ACTIONS_STEP_DEBUG
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -112,6 +118,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
env:
TF_CLOUD_API_TOKEN: 'XXXXXXXXXXXXXX.atlasv1.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
ACTIONS_STEP_DEBUG: $ACTIONS_STEP_DEBUG
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -141,6 +148,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
env:
TF_CLOUD_API_TOKEN: 'XXXXXXXXXXXXXX.atlasv1.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
ACTIONS_STEP_DEBUG: $ACTIONS_STEP_DEBUG
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -165,6 +173,8 @@ jobs:

tofu-credentials-none:
name: 'OpenTofu No Credentials'
env:
ACTIONS_STEP_DEBUG: $ACTIONS_STEP_DEBUG
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ inputs:
description: 'API token for GitHub to increase the rate limit. Defaults to the GITHUB_TOKEN environment variable unless running on Forgejo/Gitea.'
default: ''
required: false
step_debug_logging:
description: 'This increases job log verbosity during and after execution when set to `true`. Defaults to `false`'
default: 'false'
required: false
outputs:
stdout:
description: 'The STDOUT stream of the call to the `tofu` binary.'
Expand Down
3 changes: 3 additions & 0 deletions lib/setup-tofu.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ async function run () {
// Download requested version
const pathToCLI = await downloadAndExtractCLI(build.url);

const stepDebugLogging = core.getInput('step_debug_logging');
core.exportVariable('ACTIONS_STEP_DEBUG', stepDebugLogging);

// Install our wrapper
if (wrapper) {
await installWrapper(pathToCLI);
Expand Down
Loading