We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 712af4b commit 0323d72Copy full SHA for 0323d72
.github/workflows/system-tests.yml
@@ -172,11 +172,9 @@ jobs:
172
- name: Read forced-tests-list.json file
173
id: read_forced_tests_list
174
run: |
175
- {
176
- echo "FORCED_TESTS_LIST<<EOF"
177
- cat binaries/dd-trace-rb/.github/forced-tests-list.json
178
- echo "EOF"
179
- } >> "$GITHUB_OUTPUT"
+ echo "FORCED_TESTS_LIST<<EOF" >> $GITHUB_OUTPUT
+ echo "$(cat binaries/dd-trace-rb/.github/forced-tests-list.json)" >> $GITHUB_OUTPUT
+ echo "EOF" >> $GITHUB_OUTPUT
180
- name: Login to Docker Hub
181
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
182
with:
0 commit comments