Skip to content
This repository was archived by the owner on Jul 9, 2026. It is now read-only.

Update LICENSE to BOSL Version 1.1 #11

Update LICENSE to BOSL Version 1.1

Update LICENSE to BOSL Version 1.1 #11

Workflow file for this run

name: Build SecureVault Browser - Linux
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build-linux:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Download Chromium
run: |
# Download latest stable Chromium for Linux
wget -O chromium.snap https://launchpad.net/~chromium-team/+archive/ubuntu/stable/+files/chromium_129.0.6668.89-0ubuntu0.22.04.1_amd64.snap || \
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- name: Extract and Rebrand
run: |
mkdir -p build/linux
# TODO: Extract chromium, apply branding patches
echo "Chromium extracted - rebranding step would go here"
- name: Package
run: |
mkdir -p dist
# Create tarball
tar -czf dist/securevault-browser-linux-x86_64.tar.gz -C build/linux .
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: securevault-browser-linux
path: dist/securevault-browser-linux-x86_64.tar.gz
retention-days: 90