Skip to content

Commit 388c5dd

Browse files
authored
Fix accidentally malformed yaml in GitHub action (#2085)
Summary: Fix accidentally malformed yaml in GitHub action This was a minor mistake from #2079. Relevant Issues: N/A Type of change: /kind bugfix Test Plan: GitHub actions on PR builds should pass once this is merged (since `pull_request_target` uses the copy off main) - Also visually inspected the #2079 change again to verify nothing else was missed. Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
1 parent 1634b86 commit 388c5dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
echo "Build & Test matrix: ${matrix}"
113113
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
114114
- name: Upload Target Files
115-
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
115+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
116116
with:
117117
name: target_files
118118
path: |

0 commit comments

Comments
 (0)