Skip to content

Commit 4ba91db

Browse files
committed
Fix GitHub workflow
Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent 201b814 commit 4ba91db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/feast_plan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
IS_TEST: "True"
3232
run: |
3333
body=$(cd module_0/feature_repo_aws; feast plan)
34+
echo $body
35+
body=$(echo $body | tail -n +2)
3436
body="${body//'%'/'%25'}"
3537
body="${body//$'\n'/'%0A'}"
3638
body="${body//$'\r'/'%0D'}"
3739
echo $body
38-
body=$(echo $body | tail -n +2)
39-
echo $body
4040
echo "::set-output name=body::$body"
4141
4242
# Post a comment on the PR with the results of `feast plan`

0 commit comments

Comments
 (0)