We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8a500 commit 2e0a4e4Copy full SHA for 2e0a4e4
1 file changed
.github/workflows/quality-checks.yml
@@ -26,6 +26,34 @@ on:
26
required: true
27
28
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
46
47
48
49
50
51
52
53
54
55
56
+
57
quality_checks:
58
runs-on: ubuntu-22.04
59
container:
0 commit comments