Skip to content

Commit 3ff3e2e

Browse files
committed
fix: github action and version bump
1 parent 415b578 commit 3ff3e2e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737
os: [ubuntu-latest, macos-latest]
3838
include:
3939
- os: macos-latest
40-
artifact_name: goon
41-
asset_name: goon-darwin-amd64
40+
artifact_name: bert
41+
asset_name: bert-darwin-amd64
4242
- os: ubuntu-latest
43-
artifact_name: goon
44-
asset_name: goon-linux-amd64
43+
artifact_name: bert
44+
asset_name: bert-linux-amd64
4545
# - os: windows-latest
46-
# artifact_name: goon.exe
47-
# asset_name: goon-windows-amd64.exe
46+
# artifact_name: bert.exe
47+
# asset_name: bert-windows-amd64.exe
4848

4949
steps:
5050
- uses: actions/checkout@v4

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bert"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55

66
[dependencies]

src/platform.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl Platform {
2424
pub fn bin_path() -> PathBuf {
2525
match Self::current() {
2626
Platform::Windows => {
27-
let local_app_data = platform_dirs::AppDirs::new(Some("goon"), false)
27+
let local_app_data = platform_dirs::AppDirs::new(Some("bert"), false)
2828
.unwrap()
2929
.data_dir;
3030
local_app_data.join("bin")

0 commit comments

Comments
 (0)