From 6d6291b1733b9869871221cb453a7242736f4c3c Mon Sep 17 00:00:00 2001 From: Marko Bevc Date: Tue, 23 Jun 2026 13:11:44 +0100 Subject: [PATCH] chore: re-order release --- .github/workflows/release.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 023f13f..ef2698a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -46,12 +46,6 @@ jobs: - name: Install deps and build run: npm ci && npm run build - - name: Create GitHub Release with auto-generated notes - uses: softprops/action-gh-release@v3 - with: - generate_release_notes: true - prerelease: ${{ steps.meta.outputs.prerelease }} - # Stable releases: build-and-tag-action pushes dist/ to the tag # AND updates the rolling v and v. refs. - name: Build and tag (stable releases) @@ -76,6 +70,12 @@ jobs: git tag -f "${TAG}" git push origin -f "refs/tags/${TAG}" + - name: Create GitHub Release with auto-generated notes + uses: softprops/action-gh-release@v3 + with: + generate_release_notes: true + prerelease: ${{ steps.meta.outputs.prerelease }} + notify-finish: needs: [notify-start, release] if: always() && needs.notify-start.result == 'success'