Skip to content

Commit

Permalink
chore: try release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
alikhil committed Sep 19, 2023
1 parent 93ea566 commit 8d56ae6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ checksum:
name_template: 'checksums.txt'
extra_files:
- glob: ./dist/raw/*
release:
github:
owner: KazanExpress
name: tflint-ruleset

signs:
- artifacts: checksum
args: ["--batch", "-u", "{{ .Env.GPG_FINGERPRINT }}", "--output", "${signature}", "--detach-sign", "${artifact}"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ TODO: This template repository does not contain release binaries, so this instal
You can install the plugin with `tflint --init`. Declare a config in `.tflint.hcl` as follows:

```hcl
plugin "template" {
plugin "ke" {
enabled = true
version = "0.2.0"
version = "0.3.0"
source = "github.com/KazanExpress/tflint-ruleset"
signing_key = <<EOF
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func main() {

RuleSet: &terraform.RuleSet{
BuiltinRuleSet: tflint.BuiltinRuleSet{
Name: "terraform",
Name: "ke",
Version: project.Version,
},
PresetRules: rules.PresetRules,
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package project
import "fmt"

// Version is ruleset version
const Version string = "0.1.0"
const Version string = "0.3.0"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 8d56ae6

Please sign in to comment.