Skip to content

Commit 07a20b1

Browse files
committed
Trigger Workflow
1 parent 52b9ef7 commit 07a20b1

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

.github/workflows/BuildAndRelease.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,8 @@ jobs:
5757
steps:
5858
- uses: actions/checkout@v6
5959

60-
- name: Download Linux Artifact
60+
- name: Download artifacts
6161
uses: actions/download-artifact@v7
62-
with:
63-
name: ubuntu-latest
64-
65-
- name: Download Windows Artifact
66-
uses: actions/download-artifact@v7
67-
with:
68-
name: windows-latest
6962

7063
- name: Release Build
7164
uses: softprops/action-gh-release@v2

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.sh"),
38+
game_path: PathBuf::from("<hl2_macos>"),
3939
}
4040
}
4141
}

0 commit comments

Comments
 (0)