We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de166e6 commit 181fd23Copy full SHA for 181fd23
.github/workflows/compute-workflow-parameters.yml
@@ -129,7 +129,7 @@ jobs:
129
outputs:
130
ref:
131
description: "System tests ref"
132
- value: \${{ steps.extract.outputs.ref }}
+ value: ${{ '\${{ steps.extract.outputs.ref }}' }}
133
134
runs:
135
using: composite
@@ -138,8 +138,8 @@ jobs:
138
id: extract
139
shell: bash
140
run: |
141
- echo "ref=\${{ github.action_path }}" >> \$GITHUB_OUTPUT
142
- echo "path=\${{ github.action_ref }}" >> \$GITHUB_OUTPUT
+ echo "ref=${{ '\${{ github.action_path }}' }}" >> \$GITHUB_OUTPUT
+ echo "path=${{ '\${{ github.action_ref }}' }}" >> \$GITHUB_OUTPUT
143
EOF
144
cat current_ref/action.yaml
145
- name: Current ref
0 commit comments