diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index a23e0a1c8..dce554492 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -19,13 +19,23 @@ jobs: strategy: fail-fast: false matrix: - arch: [x64] + arch: [x64, arm64] os: + - name: macos + image: macos-latest + extension: [dmg, zip] + shell: bash + forge_platform: darwin + - name: linux + image: ubuntu-latest + extension: [deb, rpm, zip, flatpak] + shell: bash + forge_platform: linux - name: windows - image: win-signing + image: windows-latest extension: [exe, zip] - forge_platform: win32 shell: cmd + forge_platform: win32 runs-on: ${{ matrix.os.image }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 675801a2d..e3925d2c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,6 +56,7 @@ jobs: APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} + WINDOWS_SIGN_EXECUTABLE: ${{ vars.WINDOWS_SIGN_EXECUTABLE }} - name: Publish release uses: softprops/action-gh-release@v2