From 6ae5efed427d8ff90b945c054d86a40cc8e47bfe Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 11 Dec 2025 16:15:00 +0100 Subject: [PATCH] ci: generate changelog after publish --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e20f81af..fd25da39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,14 +117,6 @@ jobs: shell: bash run: pnpm install --frozen-lockfile - - name: Generate GitHub Changelog - run: pnpx changelogithub --from "$FROM_TAG" --to "$TAG" - continue-on-error: true - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TAG: ${{ steps.resolve.outputs.TAG }} - FROM_TAG: ${{ steps.resolve.FROM_TAG }} - - name: Build run: pnpm build working-directory: ${{ steps.resolve.outputs.PACKAGE_PATH }} @@ -132,3 +124,11 @@ jobs: - name: Publish to NPM run: pnpm publish --access public --no-git-checks working-directory: ${{ steps.resolve.outputs.PACKAGE_PATH }} + + - name: Generate GitHub Changelog + run: pnpx changelogithub --from "$FROM_TAG" --to "$TAG" + continue-on-error: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + TAG: ${{ steps.resolve.outputs.TAG }} + FROM_TAG: ${{ steps.resolve.FROM_TAG }} -- 2.47.3