Skip to content

Commit

Permalink
Released v0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mvisonneau committed Dec 17, 2020
1 parent f6b2349 commit 01cbd54
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ docker_manifests:
- ghcr.io/mvisonneau/tfcw:latest-arm64v8

checksum:
name_template: '{{ .ProjectName }}_{{ .Tag }}_SHA256SUMS'
algorithm: sha256
name_template: '{{ .ProjectName }}_{{ .Tag }}_SHA512SUMS.txt'
algorithm: sha512

signs:
- artifacts: checksum
args:
[
'-u',
'4D8900874BE004976FD945D892E0D0BACD70E16F',
'C09CA9F71C5C988E65E3E5FCADEA38EDC46F25BE',
'--output',
'${signature}',
'--detach-sign',
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [0ver](https://0ver.org).

## [Unreleased]

## [v0.0.11] - 2020-12-17

### Added

- Release GitHub container registry based images: [ghcr.io/mvisonneau/tfcw](https://github.com/users/mvisonneau/packages/container/package/tfcw)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ install: ## Build and install locally the binary (dev purpose)

.PHONY: build-local
build-local: ## Build the binaries using local GOOS
go build ./cmd/$(NAME)
CGO_ENABLED=0 go build ./cmd/$(NAME)

.PHONY: build
build: setup ## Build the binaries
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![PkgGoDev](https://pkg.go.dev/badge/github.com/mvisonneau/tfcw)](https://pkg.go.dev/mod/github.com/mvisonneau/tfcw)
[![Go Report Card](https://goreportcard.com/badge/github.com/mvisonneau/tfcw)](https://goreportcard.com/report/github.com/mvisonneau/tfcw)
[![Docker Pulls](https://img.shields.io/docker/pulls/mvisonneau/tfcw.svg)](https://hub.docker.com/r/mvisonneau/tfcw/)
[![Build Status](https://cloud.drone.io/api/badges/mvisonneau/tfcw/status.svg)](https://cloud.drone.io/mvisonneau/tfcw)
[![Build Status](https://github.com/mvisonneau/tfcw/workflows/test/badge.svg?branch=main)](https://github.com/mvisonneau/tfcw/actions)
[![Coverage Status](https://coveralls.io/repos/github/mvisonneau/tfcw/badge.svg?branch=main)](https://coveralls.io/github/mvisonneau/tfcw?branch=main)
[![Gitter](https://badges.gitter.im/terraform-cloud-wrapper/community.svg)](https://gitter.im/terraform-cloud-wrapper/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

Expand Down Expand Up @@ -292,6 +292,9 @@ GLOBAL OPTIONS:

Have a look onto the [latest release page](https://github.com/mvisonneau/tfcw/releases/latest) and pick your flavor.

Checksums are signed with the [following GPG key](https://keybase.io/mvisonneau/pgp_keys.asc): `C09C A9F7 1C5C 988E 65E3  E5FC ADEA 38ED C46F 25BE`


### Go

```bash
Expand All @@ -307,7 +310,9 @@ Have a look onto the [latest release page](https://github.com/mvisonneau/tfcw/re
### Docker

```bash
~$ docker run -it --rm mvisonneau/tfcw
~$ docker run -it --rm docker.io/mvisonneau/tfcw
or
~$ docker run -it --rm ghcr.io/mvisonneau/tfcw
```

### Scoop
Expand Down

0 comments on commit 01cbd54

Please sign in to comment.