-
-
Notifications
You must be signed in to change notification settings - Fork 69
31 lines (28 loc) · 906 Bytes
/
wine-stable.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Wine Stable
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v3
with:
workflow: bootstraps.yml
workflow_conclusion: success
path: /opt
- name: Build Wine
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
export WINE_VERSION="$(wget -q -O - "https://gitlab.winehq.org/wine/wine/-/raw/stable/VERSION" | tail -c +14)"
WINE_BRANCH=vanilla ./build_wine.sh
sha256sum *.tar.xz
- uses: actions/upload-artifact@v4
with:
name: Wine Stable
path: ./*.tar.xz