mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-14 11:04:44 +00:00
desktop: add Microsoft Store package workflow
This commit is contained in:
parent
6e3c57a9ff
commit
4c1aba1ae2
7 changed files with 82 additions and 0 deletions
45
.github/workflows/build-windows-store.yml
vendored
Normal file
45
.github/workflows/build-windows-store.yml
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
name: Build Windows Store package
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
paths:
|
||||
- .github/workflows/build-windows-store.yml
|
||||
- app/**
|
||||
- src/**
|
||||
- package.json
|
||||
- package-lock.json
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
appx:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: 22.13.0
|
||||
cache: npm
|
||||
cache-dependency-path: |
|
||||
package-lock.json
|
||||
app/package-lock.json
|
||||
|
||||
- name: Install CLI dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Install desktop dependencies
|
||||
run: npm ci --prefix app
|
||||
|
||||
- name: Build Microsoft Store package
|
||||
run: npm --prefix app run package:store
|
||||
|
||||
- name: Upload Store package
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: CodeBurn-Microsoft-Store
|
||||
path: app/release/CodeBurn-Store-*.appx
|
||||
if-no-files-found: error
|
||||
retention-days: 14
|
||||
|
|
@ -66,6 +66,7 @@ npm --prefix app run package # macOS, both arm64 and x64
|
|||
npm --prefix app run package:arm64 # macOS arm64 only (faster on Apple Silicon)
|
||||
npm --prefix app run package:x64 # macOS x64 only
|
||||
npm --prefix app run package:win # Windows NSIS installer, x64
|
||||
npm --prefix app run package:store # Microsoft Store AppX, x64 (Windows host only)
|
||||
npm --prefix app run package:linux # Linux AppImage, x64
|
||||
```
|
||||
|
||||
|
|
@ -184,6 +185,27 @@ shows **"Windows protected your PC"**. Users click **"More info" → "Run
|
|||
anyway"** to launch it. This is expected for an unsigned build; the only fix is
|
||||
a purchased code-signing (Authenticode/EV) certificate.
|
||||
|
||||
### Microsoft Store (`package:store`)
|
||||
|
||||
The Store build is a separate AppX target so the GitHub NSIS installer remains
|
||||
unchanged. AppX packaging requires Windows 10 or newer and is built by the
|
||||
manual `Build Windows Store package` GitHub Actions workflow on
|
||||
`windows-latest`. Download its `CodeBurn-Microsoft-Store` workflow artifact and
|
||||
upload the contained `CodeBurn-Store-<version>-x64.appx` file in Partner Center.
|
||||
|
||||
The manifest identity must exactly match the reserved Partner Center product:
|
||||
|
||||
- Identity name: `Codeburn.CodeBurn`
|
||||
- Publisher: `CN=3EFA3336-87E1-46F2-9DFA-2EB5A7693F89`
|
||||
- Publisher display name: `Codeburn`
|
||||
- Store ID: `9P0R4ZL5XMB8`
|
||||
|
||||
The Store package is intentionally unsigned: Microsoft signs it during Store
|
||||
submission. Direct sideloading requires a separate trusted or development
|
||||
certificate. The AppX declares `runFullTrust` (electron-builder's required
|
||||
default for Electron apps), so CodeBurn retains access to the user's local
|
||||
provider session files rather than running in a UWP application sandbox.
|
||||
|
||||
### Linux (`package:linux`)
|
||||
|
||||
`electron-builder --linux` produces a single artifact in `app/release/`:
|
||||
|
|
|
|||
BIN
app/build/appx/Square150x150Logo.png
Normal file
BIN
app/build/appx/Square150x150Logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
BIN
app/build/appx/Square44x44Logo.png
Normal file
BIN
app/build/appx/Square44x44Logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
BIN
app/build/appx/StoreLogo.png
Normal file
BIN
app/build/appx/StoreLogo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
BIN
app/build/appx/Wide310x150Logo.png
Normal file
BIN
app/build/appx/Wide310x150Logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -16,6 +16,7 @@
|
|||
"package:arm64": "npm run stage-cli && npm run build && electron-builder --mac --arm64",
|
||||
"package:x64": "npm run stage-cli && npm run build && electron-builder --mac --x64",
|
||||
"package:win": "npm run stage-cli && npm run build && electron-builder --win",
|
||||
"package:store": "npm run stage-cli && npm run build && electron-builder --win appx --x64",
|
||||
"package:linux": "npm run stage-cli && npm run build && electron-builder --linux"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
@ -100,6 +101,20 @@
|
|||
"perMachine": false,
|
||||
"artifactName": "CodeBurn-Setup-${version}.${ext}"
|
||||
},
|
||||
"appx": {
|
||||
"applicationId": "CodeBurn",
|
||||
"identityName": "Codeburn.CodeBurn",
|
||||
"publisher": "CN=3EFA3336-87E1-46F2-9DFA-2EB5A7693F89",
|
||||
"publisherDisplayName": "Codeburn",
|
||||
"displayName": "CodeBurn",
|
||||
"artifactName": "CodeBurn-Store-${version}-${arch}.${ext}",
|
||||
"backgroundColor": "#15100D",
|
||||
"languages": [
|
||||
"en-US"
|
||||
],
|
||||
"minVersion": "10.0.17763.0",
|
||||
"maxVersionTested": "10.0.26100.0"
|
||||
},
|
||||
"linux": {
|
||||
"target": [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue