Skip to content

Commit

Permalink
Upgrade version (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelvalle authored Jul 19, 2020
1 parent a624a2c commit aba73b8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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 = "subilo"
version = "0.0.1"
version = "0.1.2"
description = "Tiny deployment agent"
authors = ["gillchristian <[email protected]>", "ndelvalle <[email protected]>"]
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
Expand All @@ -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
```

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aba73b8

Please sign in to comment.