Skip to content

Commit

Permalink
fix: github action and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelessiet committed Nov 17, 2024
1 parent 415b578 commit 3ff3e2e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
os: [ubuntu-latest, macos-latest]
include:
- os: macos-latest
artifact_name: goon
asset_name: goon-darwin-amd64
artifact_name: bert
asset_name: bert-darwin-amd64
- os: ubuntu-latest
artifact_name: goon
asset_name: goon-linux-amd64
artifact_name: bert
asset_name: bert-linux-amd64
# - os: windows-latest
# artifact_name: goon.exe
# asset_name: goon-windows-amd64.exe
# artifact_name: bert.exe
# asset_name: bert-windows-amd64.exe

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bert"
version = "0.1.2"
version = "0.1.3"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl Platform {
pub fn bin_path() -> PathBuf {

Check warning on line 24 in src/platform.rs

View workflow job for this annotation

GitHub Actions / build-and-publish (ubuntu-latest)

associated functions `bin_path` and `package_manager_commands` are never used

Check warning on line 24 in src/platform.rs

View workflow job for this annotation

GitHub Actions / build-and-publish (macos-latest)

associated functions `bin_path` and `package_manager_commands` are never used
match Self::current() {
Platform::Windows => {
let local_app_data = platform_dirs::AppDirs::new(Some("goon"), false)
let local_app_data = platform_dirs::AppDirs::new(Some("bert"), false)
.unwrap()
.data_dir;
local_app_data.join("bin")
Expand Down

0 comments on commit 3ff3e2e

Please sign in to comment.