This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Selfhost Build Windows Binaries of Ungoogled Chromium #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |