Skip to content

Proton CI

Proton CI #10

Workflow file for this run

name: Proton CI
on:
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: bootstraps.yml
workflow_conclusion: success
path: /opt
- name: Build Proton
run: |
sudo apt update
sudo apt install debootstrap perl git wget xz-utils bubblewrap autoconf
sudo tar -C /opt -xpf /opt/Bootstraps/bootstraps.tar.xz
chmod +x build_wine.sh
WINE_BRANCH=proton ./build_wine.sh
- uses: actions/upload-artifact@v3
with:
name: Proton
path: ./*.tar.xz