Skip to content

Commit 595657e

Browse files
Fix installation directory formatting in NSIS installer instructions
1 parent b22b599 commit 595657e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ jobs:
3636
- ✅ **PHP 8.2** (with extensions)
3737
- ✅ **phpMyAdmin** (database management)
3838
- ✅ **Modern React UI** (auto-updating)
39-
- ✅ **Installs to C:\\dsb\\** (configurable)
39+
- ✅ **Installs to C:\\\\dsb\\\\** (configurable)
4040
4141
**Installation:**
4242
1. Download the NSIS installer (DevStackBox_*_x64-setup.exe)
4343
2. Run as administrator
44-
3. When prompted, choose C:\\dsb\\ as installation directory
44+
3. When prompted, choose C:\\\\dsb\\\\ as installation directory
4545
4. Launch DevStackBox from Start Menu
4646
5. Start all services from the UI
4747
6. Access http://localhost for your projects
4848
7. Access http://localhost/phpmyadmin for database management
4949
5050
**Command Line Installation:**
51-
```cmd
52-
DevStackBox_0.1.0-1_x64-setup.exe /S /D=C:\\dsb
53-
```
51+
\`\`\`
52+
DevStackBox_0.1.0-1_x64-setup.exe /S /D=C:\\\\dsb
53+
\`\`\`
5454
5555
**What's New:**
5656
- Complete server stack bundled in installer
@@ -59,8 +59,8 @@ jobs:
5959
- Auto-updates for continuous improvements`,
6060
draft: true,
6161
prerelease: true
62-
})
63-
return data.id
62+
});
63+
return data.id;
6464
6565
build-tauri:
6666
needs: create-release
@@ -122,10 +122,10 @@ jobs:
122122
release_id: ${{ needs.create-release.outputs.release_id }}
123123
with:
124124
script: |
125-
github.rest.repos.updateRelease({
125+
await github.rest.repos.updateRelease({
126126
owner: context.repo.owner,
127127
repo: context.repo.repo,
128128
release_id: process.env.release_id,
129129
draft: false,
130130
prerelease: true
131-
})
131+
});

0 commit comments

Comments
 (0)