diff --git a/Cargo.lock b/Cargo.lock index 208e857..f0aa21f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1662,7 +1662,7 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" [[package]] name = "subilo" -version = "0.0.1" +version = "0.1.2" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 0fdf070..bf3e1f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subilo" -version = "0.0.1" +version = "0.1.2" description = "Tiny deployment agent" authors = ["gillchristian ", "ndelvalle "] edition = "2018" diff --git a/README.md b/README.md index 294599e..f65e056 100644 --- a/README.md +++ b/README.md @@ -43,10 +43,10 @@ curl -X POST 'https://subilo.yourdomain.com/webhook' \ ### Install script ``` -curl -s -L https://raw.githubusercontent.com/Huemul/subilo/master/install.sh | bash +curl -s -L https://raw.githubusercontent.com/huemul/subilo/master/install.sh | bash ``` -This command runs the [install script](https://github.com/Huemul/subilo/blob/master/install.sh). +This command runs the [install script](https://github.com/huemul/subilo/blob/master/install.sh). The script downloads the latest Subilo release and attempts to add the Subilo bin path to the `$PATH` variable in the correct profile file (`~/.profile`, `~/.bashrc`, `~/.bash_profile`, `~/.zshrc` or `~/.config/fish/config.fish`) @@ -59,11 +59,11 @@ $ cargo install subilo ### Manually -Download the latest [released binary](https://github.com/Huemul/subilo/releases) +Download the latest [released binary](https://github.com/huemul/subilo/releases) and add executable permissions: ``` -$ wget -O subilo "https://github.com/Huemul/subilo/releases/download/v0.0.1/subilo-x86-64-linux" +$ wget -O subilo "https://github.com/huemul/subilo/releases/download/v0.0.2/subilo-x86-64-linux" $ chmod +x subilo ``` @@ -99,7 +99,7 @@ SUBCOMMANDS: ### Configuration Create a `.subilorc` file with the required configuration to deploy projects. -A `.subilorc` example can be found [here](https://github.com/Huemul/subilo/blob/master/sample.subilorc). +A `.subilorc` example can be found [here](https://github.com/huemul/subilo/blob/master/sample.subilorc). ### Start diff --git a/install.sh b/install.sh index a6aa85f..783de02 100755 --- a/install.sh +++ b/install.sh @@ -8,7 +8,7 @@ red="\033[31m" green="\033[32m" cyan="\033[36m" -DOWNLOAD_URL="https://github.com/Huemul/subilo/releases/download/alpha_v5/subilo-x86-64-linux" +DOWNLOAD_URL="https://github.com/huemul/subilo/releases/download/v0.0.2/subilo-x86-64-linux" # the following function was brought from https://yarnpkg.com/install.sh # https://github.com/yarnpkg/yarn/blob/master/LICENSE