Skip to content

Commit 14d1046

Browse files
authored
Fixed dist path
1 parent d15b6c3 commit 14d1046

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ jobs:
4444
restore-keys: |
4545
${{ runner.os }}-electron-builder-cache-
4646
- uses: actions/checkout@v2
47-
- name: Setup tmate session
48-
uses: mxschmitt/action-tmate@v2
4947
- name: Install deps
50-
run: sudo apt-get install --no-install-recommends -y wine32 wine64 gcc-multilib g++-multilib || true
48+
run: |
49+
sudo dpkg --add-architecture i386
50+
sudo apt update
51+
sudo apt install --no-install-recommends -y wine32 wine64 gcc-multilib g++-multilib
5152
- uses: actions/checkout@v2
5253
- name: Setup Node.js environment
5354
uses: actions/[email protected]
@@ -68,4 +69,4 @@ jobs:
6869
uses: actions/upload-artifact@v1
6970
with:
7071
name: AhMyth
71-
path: /dist/
72+
path: ./AhMyth-Server/dist/

0 commit comments

Comments
 (0)