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