Skip to content

Commit 3d43bc7

Browse files
authored
Update printenv workflow (#81)
2 parents cdb67d8 + d1c4654 commit 3d43bc7

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1-
name: "2024 PyCON DE 🔬 Show Default Env"
2-
run-name: "MANUAL - 🔬 Show Default Env (run by - ${{ github.triggering_actor }})"
1+
name: "2024 PyCON DE ☠️ Show Environment"
2+
run-name: "MANUAL - ☠️ Show Environment (run by - ${{ github.triggering_actor }})"
33

44
on:
5+
pull_request:
56
workflow_dispatch:
67

78
jobs:
89
show_default_shell:
910
runs-on: ubuntu-latest
11+
timeout-minutes: 1
1012

1113
steps:
12-
- name: Display Environment
13-
run: printenv
14+
- name: ☠️ Display Environment Variables Names
15+
run: |
16+
for var in $(printenv | cut -d "=" -f 1); do
17+
echo "$var"
18+
done >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)