From ba88244571f43fa826f76da6682142a4d5c06e64 Mon Sep 17 00:00:00 2001 From: didirus4 Date: Mon, 7 Jul 2025 18:18:57 +0300 Subject: [PATCH] fix? --- .github/workflows/astralrinth-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/astralrinth-build.yml b/.github/workflows/astralrinth-build.yml index 0662e0d96..431d6d5f5 100644 --- a/.github/workflows/astralrinth-build.yml +++ b/.github/workflows/astralrinth-build.yml @@ -85,21 +85,21 @@ jobs: rm -rf target/*/release/bundle || true - name: 🔨 Build macOS app - if: matrix.platform == 'macos' + if: matrix.platform == 'macos-latest' run: pnpm --filter=@modrinth/app run tauri build --target universal-apple-darwin --config tauri-release.conf.json env: TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} - name: 🔨 Build Linux app - if: matrix.platform == 'ubuntu' + if: matrix.platform == 'ubuntu-22.04' run: pnpm --filter=@modrinth/app run tauri build --config tauri-release.conf.json env: TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} - name: 🔨 Build Windows app - if: matrix.platform == 'windows' + if: matrix.platform == 'windows-latest' shell: pwsh run: | $env:JAVA_HOME = "$env:JAVA_HOME_11_X64"