mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
- Native macOS fingerprint config (platform=macos, skip GPU/concurrency spoofing) - Enable darwin-arm64 and darwin-x64 in AVAILABLE_PLATFORMS (Python + JS) - Update release workflow: multi-platform title, patch count, GPG key reference - Update platform tables in both READMEs: macOS Intel now available - Fix stealth test timeouts
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: Release Binary
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: 'Release tag (e.g. chromium-v145.0.7718.0)'
|
|
required: true
|
|
title:
|
|
description: 'Release title (e.g. Chromium v145 — Stealth Build)'
|
|
required: true
|
|
default: 'Stealth Chromium Build'
|
|
patch_count:
|
|
description: 'Number of fingerprint patches'
|
|
required: true
|
|
default: '16'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Create release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
tag_name: ${{ github.event.inputs.tag }}
|
|
name: "${{ github.event.inputs.title }}"
|
|
body: |
|
|
## Stealth Chromium Build
|
|
|
|
Pre-built Chromium with ${{ github.event.inputs.patch_count }} source-level fingerprint patches.
|
|
|
|
### Install
|
|
```bash
|
|
pip install cloakbrowser # Python
|
|
npm install cloakbrowser # JavaScript
|
|
# Binary auto-downloads on first launch
|
|
```
|
|
|
|
> Checksums and platform list will be added after binary uploads.
|
|
>
|
|
> Release signed with CloakHQ GPG key: `C60C0DDC9D0DE2DD`
|