Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
- name: Install the rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.85.0
toolchain: stable
targets: ${{ matrix.rust-target }}

- name: Build
run: cargo build --release --target ${{ matrix.rust-target }} --manifest-path ./nova_cli/Cargo.toml
run: cargo build --release --target ${{ matrix.rust-target }} --bin nova_cli

- name: Prepare binary
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.88.0"
channel = "1.89.0"
components = ["rustfmt", "clippy"]
Loading