From 7d62d0aadfa0efe189e835f63e5dcd257847c733 Mon Sep 17 00:00:00 2001 From: Patrick Lee Scott Date: Sun, 20 Nov 2022 13:09:08 -0600 Subject: [PATCH] fix: revert to syntax 2 --- .github/workflows/github-release.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-release.yaml b/.github/workflows/github-release.yaml index e8c4283..2b9b3c2 100644 --- a/.github/workflows/github-release.yaml +++ b/.github/workflows/github-release.yaml @@ -54,10 +54,17 @@ jobs: # with: # token: ${{ secrets.GITHUB_TOKEN }} + # - name: Generate Conventional Changelog + # id: changelog + # if: env.previous_tag + # run: echo "changelog=$(npx conventional-changelog-cli -p angular; echo x$?)" >> $GITHUB_OUTPUT - name: Generate Conventional Changelog id: changelog if: env.previous_tag - run: echo "changelog=$(npx conventional-changelog-cli -p angular; echo x$?)" >> $GITHUB_OUTPUT + run: >- + echo "::set-output name=changelog::$( + npx conventional-changelog-cli -p angular + )" - run: | echo "${{ steps.changelog.outputs.changelog }}"