Add debug step for manual workflow runs

Added a debug step to print environment variables during manual runs.
This commit is contained in:
Hamish Willee
2025-10-01 10:31:09 +10:00
committed by GitHub
parent a03386316f
commit 150757c43b
+7
View File
@@ -64,6 +64,13 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile --cwd ./docs
- name: Debug environment (only on manual run)
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "=== Environment variables ==="
env | sort
echo "============================="
- name: Build with VitePress
working-directory: ./docs
run: |