diff --git a/.github/workflows/rust-build-deploy.yml b/.github/workflows/rust-build-deploy.yml index 7f357c9..ae12e27 100644 --- a/.github/workflows/rust-build-deploy.yml +++ b/.github/workflows/rust-build-deploy.yml @@ -30,7 +30,7 @@ jobs: run: cargo test --release --verbose - name: Package Binary run: | - mv target/release/runfast . && tar czf tps-linux.tar.gz tps + mv target/release/runfast . && tar czf runfast-linux.tar.gz runfast - name: Create Release id: create_release diff --git a/Cargo.lock b/Cargo.lock index 63c9288..38cbd69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,7 +786,7 @@ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" [[package]] name = "runfast" -version = "0.5.1" +version = "0.5.2" dependencies = [ "clap 4.0.18", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index b8a9dce..76a5991 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "runfast" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Anna Singleton"] repository = "https://github.com/anna-singleton/runfast" +description = "A workflow tool for quickly setting up and running programming projects" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..6b49522 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright 2024 Anna Singleton + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +