mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-21 04:33:10 +08:00
Add debug step for manual workflow runs
Added a debug step to print environment variables during manual runs.
This commit is contained in:
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user