Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/scripts/generate-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ for commit_hash in "${COMMITS[@]}"; do
done

{
echo "# Changelog for $VERSION_TITLE"
echo "## Changelog for $VERSION_TITLE"
echo ""
if [[ -z "$TAG_OR_RANGE" ]]; then
echo "This page shows unreleased changes in the development version."
Expand All @@ -108,21 +108,21 @@ done
echo ""

if [[ -n "$FEATURES" ]]; then
echo "## ✨ New Features"
echo "### ✨ New Features"
echo ""
echo "$FEATURES"
echo ""
fi

if [[ -n "$FIXES" ]]; then
echo "## 🐛 Fixes"
echo "### 🐛 Fixes"
echo ""
echo "$FIXES"
echo ""
fi

if [[ -n "$MISC" ]]; then
echo "## 🔧 Miscellaneous"
echo "### 🔧 Miscellaneous"
echo ""
echo "$MISC"
echo ""
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,8 @@ jobs:
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.build_info.outputs.tag_name }}
name: "Release ${{ steps.build_info.outputs.version }}"
name: "CmdScale.EntityFrameworkCore.TimescaleDB ${{ steps.build_info.outputs.version }}"
body: |
## CmdScale.EntityFrameworkCore.TimescaleDB Release ${{ steps.build_info.outputs.version }}

Release Date: ${{ steps.build_info.outputs.date }} ${{ steps.build_info.outputs.time }}

### Changes
${{ needs.generate-changelog.outputs.changelog }}
files: release_files/*
prerelease: false
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,10 @@ jobs:
body: |
## Automated dev-snapshot

Version: ${{ steps.build_info.outputs.version }}
Date: ${{ steps.build_info.outputs.date }} ${{ steps.build_info.outputs.time }}
Commit: [${{ steps.build_info.outputs.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})

> ⚠️ These are the latest development builds and may contain bugs or unfinished features.

### Changes
${{ needs.generate-changelog.outputs.changelog }}
files: |
./release_files/*