Skip to content

Commit

Permalink
Fix a bit of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Jan 26, 2025
1 parent c93de68 commit 1e9967a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ jobs:
run: |
rustup toolchain add 1.86.0-2025-01-25 --profile minimal
rustup target add ${{ matrix.target }} --toolchain nightly || true
rustup component add rust-src --toolchain nightly
rustup target add ${{ matrix.target }} --toolchain 1.86.0-2025-01-25 || true
rustup component add rust-src --toolchain 1.86.0-2025-01-25
rustup default nightly
rustup default 1.86.0-2025-01-25
- name: Rust Cache
uses: Swatinem/rust-cache@v2
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ fn main() {
let cmd = if !cross {
cmd.args([
"run",
"nightly",
"1.86.0-2025-01-25",
"cargo",
"build",
#[cfg(not(debug_assertions))]
"--release",
])
} else {
cmd.args([
"+nightly",
"+1.86.0-2025-01-25",
"build",
#[cfg(not(debug_assertions))]
"--release",
Expand Down

0 comments on commit 1e9967a

Please sign in to comment.