Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Melechtna authored Apr 30, 2024
1 parent 3719e01 commit 7ba8abc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Update Rust (macOS)
run: rustup update stable
- name: Build (macOS)
run: cargo build --release --target x86_64-apple-darwin
run: cargo build --release

build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
# Specific Windows build steps if needed (e.g., setting environment variables)
- name: Build (Windows)
run: cargo build --release --target x86_64-pc-windows-gnu
run: cargo build --release

upload-artifacts:
needs: [build-linux, build-macos, build-windows]
Expand Down

0 comments on commit 7ba8abc

Please sign in to comment.