chore: enhance build preview workflow with additional debug information

- Updated workflow name to use quotes for consistency.
- Added event name and event type to the debug output for improved context during deployments.
This commit is contained in:
Mauricio Siu 2025-03-16 11:15:34 -06:00
parent 1bb88e7c93
commit 6687f2723d

View File

@ -1,4 +1,4 @@
name: Build Preview Deployment name: "Build Preview Deployment"
on: on:
pull_request: pull_request:
@ -49,4 +49,6 @@ jobs:
run: | run: |
echo "Artifact upload completed" echo "Artifact upload completed"
echo "Workflow ID: ${{ github.run_id }}" echo "Workflow ID: ${{ github.run_id }}"
echo "Repository: ${{ github.repository }}" echo "Repository: ${{ github.repository }}"
echo "Event name: ${{ github.event_name }}"
echo "Event type: ${{ github.event.action }}"