diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 26c1eee..fad671d 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -31,16 +31,16 @@ jobs: - name: Prepare Binary run: | - cp target/release/xps-thermal-bench xps-thermal-bench-linux-amd64 - sha256sum xps-thermal-bench-linux-amd64 > xps-thermal-bench-linux-amd64.sha256 + cp target/release/ember-tune ember-tune-linux-amd64 + sha256sum ember-tune-linux-amd64 > ember-tune-linux-amd64.sha256 - name: Release uses: softprops/action-gh-release@v2 if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') with: files: | - xps-thermal-bench-linux-amd64 - xps-thermal-bench-linux-amd64.sha256 + ember-tune-linux-amd64 + ember-tune-linux-amd64.sha256 tag_name: v${{ steps.get_version.outputs.VERSION }} name: Release v${{ steps.get_version.outputs.VERSION }} draft: false diff --git a/Cargo.lock b/Cargo.lock index c537c74..83ed79b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -512,7 +512,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] -name = "ember-tune" +name = "ember-tune-rs" version = "1.0.0" dependencies = [ "anyhow", diff --git a/Cargo.toml b/Cargo.toml index b1d5571..40d325f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "ember-tune" +name = "ember-tune-rs" version = "1.0.0" edition = "2024" authors = ["Nils Pukropp "]