Skip to content

Commit

Permalink
fix: stable channel build issue (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat616 authored Jan 9, 2024
1 parent fcc4bb2 commit 13d7bc4
Show file tree
Hide file tree
Showing 6 changed files with 157 additions and 155 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Rust
run: rustup toolchain install 1.74.1 --profile minimal && rustup default 1.74.1 && rustup component add clippy rustfmt && rustc --version && cargo --version && rustup show
run: rustup toolchain install stable --profile minimal && rustup default stable && rustup component add clippy rustfmt && rustc --version && cargo --version && rustup show
- name: Tauri dependencies
run: >-
sudo apt-get update &&
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# install the latest Rust stable
- name: Rust stable
run: rustup toolchain install 1.74.1 --profile minimal && rustup default 1.74.1
run: rustup toolchain install stable --profile minimal && rustup default stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: "./backend/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
ref: dev # Dev branch

- name: install Rust stable
run: rustup install 1.74.1 --profile minimal && rustup default 1.74.1
run: rustup install stable --profile minimal && rustup default stable

- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: install Rust stable
run: rustup install 1.74.1 --profile minimal && rustup default 1.74.1
run: rustup install stable --profile minimal && rustup default stable

- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
ref: main

- name: install Rust stable
run: rustup install 1.74.1 --profile minimal && rustup default 1.74.1
run: rustup install stable --profile minimal && rustup default stable

- uses: Swatinem/rust-cache@v2
with:
Expand Down
Loading

0 comments on commit 13d7bc4

Please sign in to comment.