grain.social is a photo sharing platform built on atproto.

fix: update workflow to only include aarch64-apple-darwin (testing workflows)

Changed files
+16 -16
.github
workflows
+16 -16
.github/workflows/cli.yml
··· 17 17 strategy: 18 18 matrix: 19 19 include: 20 - - target: x86_64-unknown-linux-gnu 21 - os: ubuntu-latest 22 - package: grain-linux-x86_64 23 - artifact: grain-linux-x86_64 24 - - target: aarch64-unknown-linux-gnu 25 - os: ubuntu-latest 26 - package: grain-linux-aarch64 27 - artifact: grain-linux-aarch64 28 - - target: x86_64-apple-darwin 29 - os: macos-13 # Intel Mac 30 - package: grain-macos-x86_64 31 - artifact: grain-darwin-x86_64 20 + # - target: x86_64-unknown-linux-gnu 21 + # os: ubuntu-latest 22 + # package: grain-linux-x86_64 23 + # artifact: grain-linux-x86_64 24 + # - target: aarch64-unknown-linux-gnu 25 + # os: ubuntu-latest 26 + # package: grain-linux-aarch64 27 + # artifact: grain-linux-aarch64 28 + # - target: x86_64-apple-darwin 29 + # os: macos-13 # Intel Mac 30 + # package: grain-macos-x86_64 31 + # artifact: grain-darwin-x86_64 32 32 - target: aarch64-apple-darwin 33 33 os: macos-latest # Apple Silicon Mac 34 34 package: grain-macos-aarch64 35 35 artifact: grain-darwin-aarch64 36 - - target: x86_64-pc-windows-gnu 37 - os: ubuntu-latest 38 - package: grain-windows-x86_64 39 - artifact: grain-windows-x86_64.exe 36 + # - target: x86_64-pc-windows-gnu 37 + # os: ubuntu-latest 38 + # package: grain-windows-x86_64 39 + # artifact: grain-windows-x86_64.exe 40 40 41 41 runs-on: ${{ matrix.os }} 42 42 defaults: