Skip to content

Commit ee31cb0

Browse files
Fix emoji encoding issues in GitHub Actions workflow
- Replaced emoji characters with text to prevent PowerShell parsing errors - Fixed terminator issues in GitHub Actions environment - This should resolve the build failures in CI/CD pipeline
1 parent bb3f728 commit ee31cb0

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@ jobs:
2828
repo: context.repo.repo,
2929
tag_name: `${context.ref.replace(/refs\/tags\//, '')}`,
3030
name: `DevStackBox ${context.ref.replace(/refs\/tags\//, '')} - Apache 64-bit + Auto-Update`,
31-
body: `🚀 **DevStackBox v${context.ref.replace(/refs\/tags\//, '')}**
31+
body: `**DevStackBox v${context.ref.replace(/refs\/tags\//, '')}**
3232
33-
**🔧 Major Fixes in This Release:**
34-
- **64-bit Apache** - Fixed "Unsupported 16-Bit Application" error
35-
- **Dynamic Configuration** - MSI installer now works with correct paths
36-
- **Enhanced Auto-Updater** - Improved update detection and installation
37-
- **Architecture Detection** - Better error messages for compatibility issues
33+
**Major Fixes in This Release:**
34+
- **64-bit Apache** - Fixed "Unsupported 16-Bit Application" error
35+
- **Dynamic Configuration** - MSI installer now works with correct paths
36+
- **Enhanced Auto-Updater** - Improved update detection and installation
37+
- **Architecture Detection** - Better error messages for compatibility issues
3838
39-
**📦 What's Included:**
40-
- **Apache 2.4.65 (64-bit)** - Compatible with 64-bit Windows
41-
- **MySQL 8.0 Database** (embedded)
42-
- **PHP 8.2** (with extensions)
43-
- **phpMyAdmin** (database management)
44-
- **Modern React UI** (dark/light mode)
45-
- **Auto-Updates** via GitHub Releases
39+
**What's Included:**
40+
- **Apache 2.4.65 (64-bit)** - Compatible with 64-bit Windows
41+
- **MySQL 8.0 Database** (embedded)
42+
- **PHP 8.2** (with extensions)
43+
- **phpMyAdmin** (database management)
44+
- **Modern React UI** (dark/light mode)
45+
- **Auto-Updates** via GitHub Releases
4646
47-
**🚀 Installation:**
47+
**Installation:**
4848
1. Download the NSIS installer (DevStackBox_*_x64-setup.exe)
4949
2. Run as administrator
5050
3. Install to C:\\\\dsb\\\\ (recommended) or custom location
@@ -53,17 +53,17 @@ jobs:
5353
6. Access http://localhost for your projects
5454
7. Access http://localhost/phpmyadmin for database management
5555
56-
**🔄 Auto-Update Testing:**
56+
**Auto-Update Testing:**
5757
- Install this version to test auto-update functionality
5858
- Updates check every 2 hours in this alpha version
5959
- Manual update check available via "Check Updates" button
6060
61-
**💡 Troubleshooting:**
61+
**Troubleshooting:**
6262
- If Apache won't start, use the "Debug Installation" feature
6363
- All paths are now dynamically resolved based on installation directory
6464
- Architecture compatibility is automatically checked
6565
66-
**⚠️ Note:** This is an alpha release for testing. Please report any issues on GitHub.`,
66+
**Note:** This is an alpha release for testing. Please report any issues on GitHub.`,
6767
draft: true,
6868
prerelease: true
6969
});
@@ -116,13 +116,13 @@ jobs:
116116
if (Test-Path $path) {
117117
$size = (Get-ChildItem -Path $path -Recurse | Measure-Object -Property Length -Sum).Sum
118118
$sizeMB = [math]::Round($size/1MB, 2)
119-
Write-Host " $component : $sizeMB MB" -ForegroundColor Green
119+
Write-Host "SUCCESS $component : $sizeMB MB" -ForegroundColor Green
120120
} else {
121-
Write-Host " $component : Not found" -ForegroundColor Red
121+
Write-Host "MISSING $component : Not found" -ForegroundColor Red
122122
}
123123
}
124124
125-
Write-Host "🚀 Ready for Tauri build" -ForegroundColor Blue
125+
Write-Host "Ready for Tauri build" -ForegroundColor Blue
126126
shell: powershell
127127

128128
- name: Build the app

0 commit comments

Comments
 (0)