From 0eb01c843f7887bc561ff19878d06008508f3141 Mon Sep 17 00:00:00 2001 From: rory Date: Wed, 4 Oct 2023 18:15:50 +0800 Subject: [PATCH] Fix yaml syntax --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 64db7ea..f2d0f95 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -93,7 +93,8 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Comment on PR - run: gh pr comment ${{ steps.getMergedPullRequest.outputs.number }} --body \ - ":rocket: Published in ${{ env.NEW_VERSION }}" + run: | + gh pr comment ${{ steps.getMergedPullRequest.outputs.number }} --body \ + ":rocket: Published in ${{ env.NEW_VERSION }}" env: GITHUB_TOKEN: ${{ github.token }}