Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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<major> and v<major>.<minor> refs.
- name: Build and tag (stable releases)
Expand All @@ -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'
Expand Down
Loading