From a12918be4256d6f854801b44e340b6b04d546efe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Robles?= Date: Sat, 30 Dec 2023 11:26:04 +0100 Subject: [PATCH] fix release publish CI --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 77d6344..3575f0e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,12 +16,12 @@ jobs: uses: release-flow/keep-a-changelog-action@v2 with: command: query - release-version: latest + version: latest - name: Publish to Github releases uses: softprops/action-gh-release@v1 with: - body: ${{ steps.get-release-info.outputs.release-notes }} + body: ${{ steps.query-release-info.outputs.release-notes }} # TODO: Check PR https://github.com/softprops/action-gh-release/pull/304 # make_latest: ${{ $GITHUB_REF_NAME == 'main' && true || false }} # TODO: Workaround for the above (semi-automatic workflow when non main releases):