We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdb67d8 + d1c4654 commit 3d43bc7Copy full SHA for 3d43bc7
.github/workflows/2024_PyConDE_explore_environemnt.yaml
@@ -1,13 +1,18 @@
1
-name: "2024 PyCON DE 🔬 Show Default Env"
2
-run-name: "MANUAL - 🔬 Show Default Env (run by - ${{ github.triggering_actor }})"
+name: "2024 PyCON DE ☠️ Show Environment"
+run-name: "MANUAL - ☠️ Show Environment (run by - ${{ github.triggering_actor }})"
3
4
on:
5
+ pull_request:
6
workflow_dispatch:
7
8
jobs:
9
show_default_shell:
10
runs-on: ubuntu-latest
11
+ timeout-minutes: 1
12
13
steps:
- - name: Display Environment
- 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