Skip to content

Commit

Permalink
fix(ci): 🐛 Do not build macos to avoid licencing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SpiralOutDotEu committed Nov 2, 2023
1 parent 3e8b071 commit fbbbc88
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: macos-latest
runs-on: ubuntu-latest
permissions:
contents: write
steps:
Expand All @@ -22,11 +22,9 @@ jobs:
- name: Build
run: |
rustup target add x86_64-unknown-linux-gnu
rustup target add x86_64-apple-darwin
rustup target add x86_64-pc-windows-gnu
cargo install cross
cross build --target x86_64-unknown-linux-gnu --release
cross build --target x86_64-apple-darwin --release
cross build --target x86_64-pc-windows-gnu --release
env:
Expand Down

0 comments on commit fbbbc88

Please sign in to comment.