Skip to content

Commit 3f0f02f

Browse files
committed
Fix special characters in release notes
1 parent 97e5739 commit 3f0f02f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -129,35 +129,35 @@ jobs:
129129
130130
# Generate release notes
131131
$releaseNotes = @"
132-
## 🚀 ${{ env.PROJECT_NAME }} ${{ steps.version.outputs.version }}
132+
## ${{ env.PROJECT_NAME }} ${{ steps.version.outputs.version }}
133133
134134
Interactive sorting algorithm visualizer for educational purposes.
135135
136-
### 📋 What's Changed
136+
### What's Changed
137137
$commits
138138
139-
### Quick Start
139+
### Quick Start
140140
1. **Download** the ZIP file below
141141
2. **Extract** to any folder
142-
3. **Run** ``AlgorithmVisualizer.exe``
142+
3. **Run** AlgorithmVisualizer.exe
143143
4. **Select** an algorithm and customize array size/speed
144144
5. **Click Start** to watch the sorting visualization
145145
146-
### Features
146+
### Features
147147
- 6 sorting algorithms with real-time visualization
148148
- Adjustable array size (10-500 elements)
149149
- Variable speed control for learning
150150
- Performance metrics and comparisons
151151
- No installation required - just download and run!
152152
153-
### 💻 Requirements
153+
### Requirements
154154
- Windows 10/11 (64-bit)
155155
- No additional software needed
156156
157157
---
158-
📦 **Download**: ``${{ env.PROJECT_NAME }}-${{ steps.version.outputs.version }}-win.zip``
158+
**Download**: ${{ env.PROJECT_NAME }}-${{ steps.version.outputs.version }}-win.zip
159159
160-
📚 **Full Changelog**: $changelogUrl
160+
**Full Changelog**: $changelogUrl
161161
"@
162162
163163
# Save release notes as multiline output

0 commit comments

Comments
 (0)