2a3107a78d
- Add pack:linux (AppImage x64), linux/appImage artifact names in package.json. - Gitea sync: parallel build-electron-linux, merge Windows+Linux into Gitea upload; rename Windows artifact to electron-dist-windows. - Fractured launcher CI: electron-launcher-windows + electron-launcher-linux jobs. - scripts/manual-pack-linux.sh for local test builds from current tree. - Normalize Gitea base_url (prepend https if missing); baked channel uses full URL. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
470 B
JavaScript
15 lines
470 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Production Gitea mirror (non-secret). Edit here and ship — no inject script,
|
|
* no fractured-release-channel.json, no CI env needed for these fields.
|
|
* Token stays in env: GITEA_TOKEN or launcher.json → gitea.token_env.
|
|
*/
|
|
module.exports = {
|
|
// Scheme optional — gitea-release normalizes to https:// if missing.
|
|
base_url: 'https://brassnet.ddns.net:33983',
|
|
owner: 'Dawnsorrow',
|
|
repo: 'Fractured-Distro',
|
|
release_tag: 'latest',
|
|
};
|