Skip to content

Commit

Permalink
Give macos one more shot
Browse files Browse the repository at this point in the history
  • Loading branch information
CraZySacX committed Feb 10, 2024
1 parent c0e1540 commit d8b1792
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,23 @@ jobs:
- name: ✅ Checkout ✅
uses: actions/checkout@v4
- name: 🧱 Build and Release 🧱
if: matrix.target == 'x86_64-pc-windows-gnu' || matrix.target == 'x86_64-unknown-linux-musl'
if: matrix.target == 'x86_64-unknown-linux-musl'
uses: rust-build/rust-build.action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
TOOLCHAIN_VERSION: nightly
TOOLCHAIN_VERSION: nightly-x86_64-unknown-linux-musl
- name: 🧱 Build and Release 🧱
if: matrix.target == 'x86_64-pc-windows-gnu'
uses: rust-build/rust-build.action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
TOOLCHAIN_VERSION: nightly-x86_64-pc-windows-gnu
- name: 🧱 Build and Release 🧱
if: matrix.target == 'x86_64-apple-darwin'
uses: rust-build/rust-build.action@latest
Expand All @@ -38,4 +47,4 @@ jobs:
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
TOOLCHAIN_VERSION: "1.75"
TOOLCHAIN_VERSION: "1.75-x86_64-apple-darwin"
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ readme = "README.md"
repository = "https://github.com/rustyhorde/cargo-matrix"
version = "0.1.0"

[package.metadata.binstall]

[features]
unstable = []

Expand Down

0 comments on commit d8b1792

Please sign in to comment.