Skip to content

Commit

Permalink
Merge pull request #15 from chainchad/feature/match-hashicorp-release
Browse files Browse the repository at this point in the history
Generate manifest file from GoReleaser
  • Loading branch information
jleeh authored Jan 24, 2022
2 parents 19b0d35 + 3fb4eb7 commit 5773c4f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ports:
- 8545:8545
chainlink:
image: smartcontract/chainlink
image: smartcontract/chainlink:0.10.15
env:
DATABASE_URL: postgres://postgres:5432/postgres?user=postgres&password=password&sslmode=disable
ETH_URL: ws://ganache:8545
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
PASSPHRASE: ${{ secrets.PASSPHRASE }}
-
name: Run GoReleaser
uses: goreleaser/[email protected].0
uses: goreleaser/[email protected].1
with:
version: latest
args: release --rm-dist
Expand Down
10 changes: 8 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ archives:
- format: zip
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
checksum:
extra_files:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
algorithm: sha256
signs:
Expand All @@ -50,7 +53,10 @@ signs:
- "--detach-sign"
- "${artifact}"
release:
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
extra_files:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
changelog:
skip: true

0 comments on commit 5773c4f

Please sign in to comment.