-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (59 loc) · 2.46 KB
/
simple-release.yml
File metadata and controls
73 lines (59 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Simple Windows Release (DISABLED)
on:
# Disabled - using multi-platform-release.yml instead
workflow_dispatch:
permissions:
contents: write
pull-requests: read
jobs:
windows-build:
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: |
npm install --no-optional
npm install electron-builder --save-dev
- name: Build Windows app
run: |
npx electron-builder --win --x64
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CSC_IDENTITY_AUTO_DISCOVERY: false
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag: ${{ github.ref_name }}
name: School Bell System ${{ github.ref_name }}
body: |
## 🎵 School Bell System ${{ github.ref_name }} - Windows Release
### 🔒 MAJOR FIX: Audio File Persistence
**Your audio files will now survive app updates!** This was the most requested fix.
### 📦 Download
- **Windows 10/11 (64-bit)**: Download the `.exe` installer below
- **Auto-updater enabled**: Future updates will be automatic
### ✅ What's Fixed
- Audio files no longer disappear during manual installations
- Files are now stored in persistent user data directory
- Automatic migration from old storage location
- User notification when migration occurs
### ⚙️ New Features
- Configurable repeat intervals between audio files (0-30 seconds)
- Improved password change interface
- Enhanced error handling and user feedback
### 📋 Installation
1. Download `School Bell System Setup ${{ github.ref_name }}.exe`
2. Run installer as Administrator
3. Your existing audio files will be automatically migrated
4. Continue using the app as before - your files are now safe!
---
🔔 **Finally, a school bell system where your audio files persist through updates!**
files: "dist/*.exe"
draft: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}