.goreleaser.yaml 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. version: 2
  2. project_name: bufexplorer
  3. env_files:
  4. # GoReleaser requires an API token with the 'repo' scope selected to deploy
  5. # the artifacts to GitHub. You can create one here
  6. # https://github.com/settings/tokens/new.
  7. github_token: ./github_token
  8. builds:
  9. #source:
  10. # name_template: '{{ .ProjectName }}-{{ .Version }}'.
  11. # format: "zip"
  12. # files:
  13. # - plugin/bufexplorer.vim
  14. # - doc/bufexplorer.txt
  15. # - LICENSE
  16. source:
  17. #
  18. name_template: "{{ .ProjectName }}-{{ .Version }}"
  19. format: zip
  20. files:
  21. - plugin/bufexplorer.vim
  22. - doc/bufexplorer.txt
  23. - LICENSE
  24. archives:
  25. - #
  26. format: zip
  27. name_template: "{{ .ProjectName }}-{{ .Version }}"
  28. files:
  29. - plugin/bufexplorer.vim
  30. - doc/bufexplorer.txt
  31. - LICENSE
  32. checksum:
  33. name_template: 'checksums.txt'
  34. changelog:
  35. use: github-native
  36. sort: asc
  37. filters:
  38. exclude:
  39. - README
  40. release:
  41. draft: false
  42. replace_existing_draft: true