From d6d77256fe48c60a22b93a9a0b957957639a3636 Mon Sep 17 00:00:00 2001 From: didirus4 Date: Mon, 7 Jul 2025 18:01:20 +0300 Subject: [PATCH] fix workflow --- .github/workflows/astralrinth-build.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/astralrinth-build.yml b/.github/workflows/astralrinth-build.yml index a4a419bc..0662e0d9 100644 --- a/.github/workflows/astralrinth-build.yml +++ b/.github/workflows/astralrinth-build.yml @@ -16,25 +16,24 @@ on: - 'packages/assets/**' - 'packages/ui/**' - 'packages/utils/**' - -env: - SIGN_WINDOWS_BINARIES: true + workflow_dispatch: {} jobs: build: name: Build - runs-on: ${{ matrix.platform }} strategy: fail-fast: false matrix: - platform: [ubuntu, windows, macos] + platform: [macos-latest, windows-latest, ubuntu-22.04] include: - - platform: ubuntu - artifact-target-name: x86_64-unknown-linux-gnu - - platform: windows - artifact-target-name: x86_64-pc-windows-msvc - - platform: macos + - platform: macos-latest artifact-target-name: universal-apple-darwin + - platform: windows-latest + artifact-target-name: x86_64-pc-windows-msvc + - platform: ubuntu-22.04 + artifact-target-name: x86_64-unknown-linux-gnu + + runs-on: ${{ matrix.platform }} steps: - name: 📥 Check out code