We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 115a244 commit 5283f35Copy full SHA for 5283f35
.github/workflows/build-win32.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
- os: [ ubuntu-latest ]
+ os: [ ubuntu-18.04 ]
11
12
steps:
13
- name: Check out Git repository
@@ -29,9 +29,9 @@ jobs:
29
- name: Install Wine
30
run: |
31
sudo dpkg --add-architecture i386
32
- wget -nc https://dl.winehq.org/wine-builds/winehq.key
33
- sudo apt-key add winehq.key
34
- sudo apt update
+ wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
+ sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport
+ sudo apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu $(lsb_release -cs) main"
35
sudo apt install --install-recommends winehq-stable
36
37
- name: Install Dependencies
0 commit comments