Skip to content

Commit

Permalink
Add release to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
knelasevero committed Jan 5, 2022
1 parent c47f3ad commit 94d8585
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ go.work

# ignore initial yaml files
es.yml
ss.yml
ss.yml

vmes

vmes*.tar.gz
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,27 @@ export AWS_ACCESS_KEY_ID="******"
export AWS_SECRET_ACCESS_KEY="******"
```

Build the executable:
Export the version that you want to use:

```
export VMES_VERSION=0.0.1
```

Get that release and put the executable in a directory in your PATH:

```
wget https://github.com/external-secrets/vmes/releases/download/${VMES_VERSION}/vmes_${VMES_VERSION}_linux_amd64.tar.gz
tar -xvf vmes_${VMES_VERSION}_linux_amd64.tar.gz
sudo cp vmes /usr/local/bin/
```

If you want you can build the executable locally:

```
go build
```

Run it:
And run it:

```
./vmes
Expand Down

0 comments on commit 94d8585

Please sign in to comment.