Skip to content

Commit 6d62f6b

Browse files
Fix formatting of scoped environment variable evaluation in exercise 3 workflow
1 parent 90630f4 commit 6d62f6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/exercise3_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Evaluate inner environment variable
2525
run: echo "The value of inner environment variable is ${{ env.INNER_ENV_VAR }}"
2626
- name: Evaluate scoped environment variable
27-
run: echo "The value of scoped environment variable is ${ SCOPED_ENV_VAR }"
27+
run: echo "The value of scoped environment variable is ${SCOPED_ENV_VAR}"
2828
- name: Evaluate secret
2929
run: echo "The value of secret is ${{ secrets.EDC_SECRET }}"

0 commit comments

Comments
 (0)