We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e600c5 + 2532178 commit 6f63306Copy full SHA for 6f63306
1 file changed
.github/workflows/deploy-production.yml
@@ -0,0 +1,22 @@
1
+name: Debug Spy
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ spy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Dump GitHub Context
12
+ env:
13
+ GITHUB_CONTEXT: ${{ toJson(github) }}
14
+ run: |
15
+ echo "=== WHO TRIGGERED THIS? ==="
16
+ echo "Actor: ${{ github.actor }}"
17
+ echo "Triggering Actor: ${{ github.triggering_actor }}"
18
+ echo "Ref (Tag Name): ${{ github.ref }}"
19
+ echo "Event Name: ${{ github.event_name }}"
20
21
+ echo "=== FULL CONTEXT ==="
22
+ echo "$GITHUB_CONTEXT"
0 commit comments