Skip to content

Commit 32d7271

Browse files
committed
Fixed CI hopefully
1 parent 07a20b1 commit 32d7271

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/BuildAndRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/upload-artifact@v6
2828
with:
2929
name: windows-latest
30-
path: build/Release/startup-millenium.exe
30+
path: build/startup-millenium.exe
3131

3232
linux:
3333
runs-on: ubuntu-latest
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/upload-artifact@v6
4848
with:
4949
name: ubuntu-latest
50-
path: build/Release/startup-millenium
50+
path: build/startup-millenium
5151

5252
release:
5353
name: Release

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)