Skip to content

Commit

Permalink
fix: GoReleaser lint issue (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
ciiiii authored Oct 3, 2024
1 parent 96d1e22 commit bef7fdf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#

name: Linter
on: [ pull_request ]
on: [pull_request]
jobs:
golangci:
name: Run golangci-lint
Expand All @@ -38,3 +38,14 @@ jobs:
with:
version: v1.46.2

goreleaser:
name: Run GoReleaser check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Run GoReleaser (check)
uses: goreleaser/goreleaser-action@v3
with:
args: check
6 changes: 3 additions & 3 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# Visit https://goreleaser.com for documentation on how to customize this behavior.
version: 2
project_name: terraform-provider-pulsar
before:
hooks:
Expand Down Expand Up @@ -56,6 +58,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
prerelease: auto

0 comments on commit bef7fdf

Please sign in to comment.