We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 394b345 + d5b3744 commit 2b71173Copy full SHA for 2b71173
1 file changed
.github/workflows/release_linux.yml
@@ -7,16 +7,15 @@ on:
7
8
jobs:
9
build-linux:
10
+ name: Build and Release Linux Binary
11
runs-on: ubuntu-latest
12
13
steps:
14
- name: Checkout repository
- uses: actions/checkout@v2
15
+ uses: actions/checkout@v4 # Use actions/checkout@v4 as per your example
16
- - name: Set up Rust
17
- uses: actions/setup-rust@v1
18
- with:
19
- rust-version: 'stable'
+ - name: Set up Rust toolchain
+ uses: dtolnay/rust-toolchain@stable # Set up Rust toolchain to use stable version
20
21
- name: Install dependencies
22
run: |
0 commit comments