Skip to content

Commit 2e0a4e4

Browse files
committed
debug
1 parent bc8a500 commit 2e0a4e4

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/quality-checks.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,34 @@ on:
2626
required: true
2727

2828
jobs:
29+
show_env_docker:
30+
runs-on: ubuntu-22.04
31+
container:
32+
image: ghcr.io/nhsdigital/eps-devcontainers/${{ inputs.runtime_docker_image }}
33+
options: --user 1001:1001
34+
steps:
35+
- name: show env
36+
id: show_env
37+
run: |
38+
echo "running env"
39+
env
40+
echo "showing GITHUB_OUTPUT"
41+
echo "$GITHUB_OUTPUT"
42+
echo "showing GITHUB_OUTPUT via env variable syntax"
43+
echo "$env:GITHUB_OUTPUT"
44+
show_env_no_docker:
45+
runs-on: ubuntu-22.04
46+
steps:
47+
- name: show env
48+
id: show_env
49+
run: |
50+
echo "running env"
51+
env
52+
echo "showing GITHUB_OUTPUT"
53+
echo "$GITHUB_OUTPUT"
54+
echo "showing GITHUB_OUTPUT via env variable syntax"
55+
echo "$env:GITHUB_OUTPUT"
56+
2957
quality_checks:
3058
runs-on: ubuntu-22.04
3159
container:

0 commit comments

Comments
 (0)