diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 5672928..c9265d5 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -38,3 +38,11 @@ jobs: with: version: v1.46.2 + goreleaser: + name: Run GoReleaser check + runs-on: ubuntu-latest + steps: + - name: Run GoReleaser (check) + uses: goreleaser/goreleaser-action@v3 + with: + args: check diff --git a/.goreleaser.yaml b/.goreleaser.yaml index a47a1fd..82bc708 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,4 +1,7 @@ +# yaml-language-server: $schema=https://goreleaser.com/static/schema.json +# vim: set ts=2 sw=2 tw=0 fo=jcroql # Visit https://goreleaser.com for documentation on how to customize this behavior. +version: 2 project_name: terraform-provider-pulsar before: hooks: @@ -56,6 +59,4 @@ release: name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json' # If you want to manually examine the release before its live, uncomment this line: # draft: true - prerelease: auto -changelog: - skip: true \ No newline at end of file + prerelease: auto \ No newline at end of file