We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8613f commit 3ccd0cfCopy full SHA for 3ccd0cf
action.yml
@@ -233,7 +233,8 @@ runs:
233
USE_PNPM: '${{ inputs.use_pnpm }}'
234
shell: 'bash'
235
run: |-
236
- set -euo pipefail
+ set -exuo pipefail
237
+ mkdir -p ~/.gemini
238
echo "Starting Gemini CLI installation..."
239
240
VERSION_INPUT="${GEMINI_CLI_VERSION:-latest}"
@@ -290,7 +291,12 @@ runs:
290
291
id: 'gemini_run'
292
293
294
295
+ echo "Starting Gemini CLI execution..."
296
+
297
+ echo "--- Environment variables ---"
298
+ env | sort | grep -vE "TOKEN|KEY|PASS|SECRET" || true
299
+ echo "--- End environment variables ---"
300
301
# Create a temporary directory for storing the output, and ensure it's
302
# cleaned up later
0 commit comments