Skip to content

Commit

Permalink
Release version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcassee committed Feb 10, 2020
1 parent 604fd77 commit 1e695ce
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
19 changes: 17 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,36 @@ project_name: kustomize-sopssecretgenerator

env:
- GO111MODULE=on
- CGO_ENABLED=0

env_files:
github_token: .githuub_token
github_token: .github_token

before:
hooks:
- go mod tidy

builds:
- binary: SopsSecretGenerator
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64

archives:
- format: binary

changelog:
filters:
exclude:
- '^Release version'

checksum:
name_template: "checksums.txt"

release:
github:
owner: goabout
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Development
## Version 1.2.1

* Fix sops dependency.
* Use [goreleaser](https://goreleaser.com) for releases.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Download the `SopsSecretGenerator` binary for your platform from the
move it to `$XDG_CONFIG_HOME/kustomize/plugin/goabout.com/v1beta1/sopssecretgenerator`. (By default,
`$XDG_CONFIG_HOME` points to `$HOME/.config` on Linux and OS X and `%LOCALAPPDATA%` on Windows.)

For example, to install version 1.2.0 on Linux:
For example, to install version 1.2.1 on Linux:

VERSION=1.2.0 PLATFORM=linux ARCH=amd64
VERSION=1.2.1 PLATFORM=linux ARCH=amd64
curl -Lo SopsSecretGenerator https://github.com/goabout/kustomize-sopssecretgenerator/releases/download/v${VERSION}/SopsSecretGenerator_${VERSION}_${PLATFORM}_${ARCH}
chmod +x SopsSecretGenerator
mkdir -p "${XDG_CONFIG_HOME:-$HOME/.config}/kustomize/plugin/goabout.com/v1beta1/sopssecretgenerator"
Expand Down

0 comments on commit 1e695ce

Please sign in to comment.