We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e4c36 commit 58f2f8cCopy full SHA for 58f2f8c
1 file changed
.github/workflows/stage-2-test.yaml
@@ -118,11 +118,11 @@ jobs:
118
working-directory: tests
119
run: npx playwright install --with-deps
120
- name: "Create nhs login private key file"
121
- env:
122
- NHS_LOGIN_PRIVATE_KEY: ${{ secrets.NHS_LOGIN_PRIVATE_KEY }}
123
run: |
124
mkdir -p local-environment/infra/resources/secrets
125
- printf '%s\n' "$NHS_LOGIN_PRIVATE_KEY" > local-environment/infra/resources/secrets/nhs-login-private-key.pem
+ cat > local-environment/infra/resources/secrets/nhs-login-private-key.pem << 'EOF'
+ ${{ secrets.NHS_LOGIN_PRIVATE_KEY }}
+ EOF
126
- name: "Create credentials file"
127
128
0 commit comments