Skip to content

Commit 6813117

Browse files
committed
Workflow attempted fix
1 parent 2d86cff commit 6813117

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/build-workflow.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ jobs:
1515
with:
1616
node-version: 16.x
1717

18-
- name: Set up Java
19-
uses: actions/setup-java@v1
20-
with:
21-
java-version: 1.8
22-
2318
- name: Install Wine
24-
run: sudo apt update && sudo apt install wine64
19+
run: |
20+
sudo dpkg --add-architecture i386
21+
wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
22+
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
23+
sudo apt update
24+
sudo apt install --install-recommends winehq-stable
25+
sudo apt install wine64
26+
wine64 --version
2527
2628
- name: Install node-prune
2729
run: curl -sf https://gobinaries.com/tj/node-prune | sh

0 commit comments

Comments
 (0)