Skip to content

Commit 52b9ef7

Browse files
committed
Trigger Workflow
1 parent f06984c commit 52b9ef7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/BuildAndRelease.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
- name: Lint
1818
run: cargo clippy
1919

20+
- name: Test
21+
run: cargo test
22+
2023
- name: Build
2124
run: cargo build --release
2225

23-
- name: Test
24-
run: cargo test
25-
2626
- name: Upload Artifact
2727
uses: actions/upload-artifact@v6
2828
with:
@@ -37,11 +37,11 @@ jobs:
3737
- name: Lint
3838
run: cargo clippy
3939

40-
- name: Build
41-
run: cargo build --release
42-
4340
- name: Test
4441
run: cargo test
42+
43+
- name: Build
44+
run: cargo build --release
4545

4646
- name: Upload Artifact
4747
uses: actions/upload-artifact@v6

src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ impl Default for Settings {
2828
#[cfg(target_os = "linux")]
2929
{
3030
Self {
31-
game_path: PathBuf::from("<hl2_linux>"),
31+
game_path: PathBuf::from("hl2_linux"),
3232
}
3333
}
3434

3535
#[cfg(target_os = "macos")]
3636
{
3737
Self {
38-
game_path: PathBuf::from("<hl2_macos>"),
38+
game_path: PathBuf::from("hl2.sh"),
3939
}
4040
}
4141
}

0 commit comments

Comments
 (0)