]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
ci: generate changelog after publish
authorEduardo San Martin Morote <posva13@gmail.com>
Thu, 11 Dec 2025 15:15:00 +0000 (16:15 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Thu, 11 Dec 2025 15:15:00 +0000 (16:15 +0100)
.github/workflows/release.yml

index e20f81afaba968a1efb9447a783b8708c1724d5d..fd25da39fff30bc795bcdf437ec922016bd8683a 100644 (file)
@@ -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 }}