From 457ed95c7c74c5599b063ea180da90cb72ee697a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thau=C3=A3=20Magalh=C3=A3es?= Date: Sat, 6 Apr 2024 18:17:04 -0300 Subject: [PATCH] chore: develop workflow fixed --- .github/workflows/develop.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 0e200349..9f943ffb 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -99,9 +99,15 @@ jobs: with: node-version: "14" - - name: Install Wine + - name: Install Wine64 run: sudo apt update && sudo apt install wine64 + - name: Install Wine32 + run: | + sudo dpkg --add-architecture i386 + sudo apt-get update + sudo apt-get install wine32 + - name: ⬇️ Checkout repo uses: actions/checkout@v4 with: @@ -126,6 +132,8 @@ jobs: - name: 📦 Electron Builder run: npm run electron:package:win + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Get latest release number id: get_latest_release