Skip to content

Commit

Permalink
feat: add dist/ to .gitignore and update .goreleaser.yml for release …
Browse files Browse the repository at this point in the history
…management

- Added dist/ directory to .gitignore to prevent distribution files from being tracked.
- Updated .goreleaser.yml to version 2, modified changelog sorting, and added filters to exclude certain commit types.

Signed-off-by: Ricardo Melo <ricardo@cropa.ca>
  • Loading branch information
cropalato committed Oct 30, 2024
1 parent e92b5c7 commit f27d7ba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

dist/
13 changes: 9 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Visit https://goreleaser.com for documentation on how to customize this
# behavior.
version: 2
before:
hooks:
# this is just an example and not a requirement for provider building/publishing
Expand Down Expand Up @@ -40,8 +41,12 @@ signs:
- "${signature}"
- "--detach-sign"
- "${artifact}"
release:
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
# release:
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
changelog:
skip: true
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"

0 comments on commit f27d7ba

Please sign in to comment.