Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Selfhost Build Windows Binaries of Ungoogled Chromium #1

Selfhost Build Windows Binaries of Ungoogled Chromium

Selfhost Build Windows Binaries of Ungoogled Chromium #1

Workflow file for this run

name: Selfhost Build Windows Binaries of Ungoogled Chromium
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
build:
runs-on: windows-ryzen-7
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Copy Source to Build Directory
run: |
Copy-Item -Path . -Destination "C:\ungoogled-chromium-windows" -Recurse -Force
- name: Install Python Dependencies
run: |
python -m pip install httplib2
- name: Run Ungoogled Chromium Build
run: |
python build.py --ci
working-directory: C:\ungoogled-chromium-windows