We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d86cff commit 6813117Copy full SHA for 6813117
.github/workflows/build-workflow.yml
@@ -15,13 +15,15 @@ jobs:
15
with:
16
node-version: 16.x
17
18
- - name: Set up Java
19
- uses: actions/setup-java@v1
20
- with:
21
- java-version: 1.8
22
-
23
- name: Install Wine
24
- run: sudo apt update && sudo apt install wine64
+ run: |
+ sudo dpkg --add-architecture i386
+ wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
+ sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
+ sudo apt update
+ sudo apt install --install-recommends winehq-stable
25
+ sudo apt install wine64
26
+ wine64 --version
27
28
- name: Install node-prune
29
run: curl -sf https://gobinaries.com/tj/node-prune | sh
0 commit comments