diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e63e1ca..f615d7c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,20 +15,18 @@ jobs: strategy: matrix: platform: - - { os: ubuntu-latest, target: x86_64-unknown-linux-gnu } - - { os: ubuntu-latest, target: aarch64-unknown-linux-gnu } - { os: ubuntu-latest, target: x86_64-unknown-linux-musl } - { os: ubuntu-latest, target: aarch64-unknown-linux-musl } - - { os: macos-latest, target: x86_64-apple-darwin } - - { os: macos-latest, target: aarch64-apple-darwin } - - { os: windows-latest, target: x86_64-pc-windows-msvc } - - { os: windows-latest, target: aarch64-pc-windows-msvc } + - { os: macOS-latest, target: x86_64-apple-darwin } + - { os: macOS-latest, target: aarch64-apple-darwin } +# - { os: windows-latest, target: x86_64-pc-windows-msvc } +# - { os: windows-latest, target: aarch64-pc-windows-msvc } runs-on: ${{ matrix.platform.os }} steps: - uses: actions/checkout@v4 - name: Install dependencies for musl - if: runner.os == 'Linux' && contains(matrix.platform.target, 'musl') + if: matrix.platform.os == 'ubuntu-latest' run: sudo apt-get -qq install musl-tools - name: Install Rust toolchain