Skip to content

Commit 181fd23

Browse files
committed
fix interpolation issue
1 parent de166e6 commit 181fd23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/compute-workflow-parameters.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
outputs:
130130
ref:
131131
description: "System tests ref"
132-
value: \${{ steps.extract.outputs.ref }}
132+
value: ${{ '\${{ steps.extract.outputs.ref }}' }}
133133
134134
runs:
135135
using: composite
@@ -138,8 +138,8 @@ jobs:
138138
id: extract
139139
shell: bash
140140
run: |
141-
echo "ref=\${{ github.action_path }}" >> \$GITHUB_OUTPUT
142-
echo "path=\${{ github.action_ref }}" >> \$GITHUB_OUTPUT
141+
echo "ref=${{ '\${{ github.action_path }}' }}" >> \$GITHUB_OUTPUT
142+
echo "path=${{ '\${{ github.action_ref }}' }}" >> \$GITHUB_OUTPUT
143143
EOF
144144
cat current_ref/action.yaml
145145
- name: Current ref

0 commit comments

Comments
 (0)