Skip to content

Commit

Permalink
Fix spelling of job template files and references
Browse files Browse the repository at this point in the history
  • Loading branch information
minottic committed May 5, 2022
1 parent b00b7cb commit 0ed7e31
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scicat-be.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
"LOGIN_CALLBACKS": $(jq -R -s < helm_configs/backend/login-callbacks.js),
"MIDDLEWARE": $(jq -R -s < helm_configs/backend/${{ needs.set_env.outputs.environment }}/middleware.json),
"PUBLISH_FINISHED": $(jq -R -s < helm_configs/backend/publishWhenFinished.js),
"EMAIL_TEMPLATE": $(jq -R -s < helm_configs/backend/${{ needs.set_env.outputs.environment }}/job-tempate.html),
"EMAIL_TEMPLATE": $(jq -R -s < helm_configs/backend/${{ needs.set_env.outputs.environment }}/job-template.html),
"HIDE_EMAIL": $(jq -R -s < helm_configs/backend/hideEmail.js),
}
EOF
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions helm_configs/backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ configMaps:
login-callbacks.js: "{{ .Values.ciVars.LOGIN_CALLBACKS }}"
middleware.json: "{{ .Values.ciVars.MIDDLEWARE }}"
publishWhenFinished.js: "{{ .Values.ciVars.PUBLISH_FINISHED }}"
job-tmpate.html: "{{ .Values.ciVars.EMAIL_TEMPLATE }}"
job-template.html: "{{ .Values.ciVars.EMAIL_TEMPLATE }}"
hideEmail.js: "{{ .Values.ciVars.HIDE_EMAIL }}"

env:
Expand All @@ -88,8 +88,8 @@ volumeMounts:
mountPath: /usr/src/app/server/boot/publishWhenFinished.js
subPath: publishWhenFinished.js
- name: config-volume
mountPath: /usr/src/app/email-templates/job-tempate.html
subPath: job-tempate.html
mountPath: /usr/src/app/email-templates/job-template.html
subPath: job-template.html
- name: config-volume
mountPath: /usr/src/app/server/boot/hideEmail.js
subPath: hideEmail.js
Expand Down

0 comments on commit 0ed7e31

Please sign in to comment.