Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Commit

Permalink
Release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Cunha committed Oct 16, 2017
1 parent a358f62 commit b2f065e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ You will need create a `$HOME/.paddle.yaml` that contains the bucket name, e.g:
bucket: roo-bucket
```

or if you prefer specific `BUCKET` as an environment variable

You will also need to create a `$HOME/.aws/config` or `$HOME/.aws/credentials` so Paddle can connect to AWS, e.g.:

```
Expand All @@ -31,11 +33,20 @@ aws_secret_access_key=yyy
region=eu-west-1
```


```
$ go build
```

## Release

In order to release a new version, set up github export GITHUB_TOKEN=[YOUR_TOKEN] and do the following steps:

```
$ git tag -a vX.X.X -m "[Comment]"
$ git push origin vX.X.X
$ goreleaser

This comment has been minimized.

Copy link
@jeffreylo

jeffreylo Oct 17, 2017

might want to also instruct potential releasers to follow goreleaser’s install instructions: https://goreleaser.com/#introduction__installing_goreleaser

e.g.,

goreleaser is used to release paddle. Install goreleaser. goreleaser also requires a personal access token for Github.

To release a new version:

$ git tag -a vX.X.X -m "[Comment]"
$ git push origin vX.X.X
$ GITHUB_TOKEN=YOUR_TOKEN goreleaser
```

## Usage

```
Expand Down

0 comments on commit b2f065e

Please sign in to comment.