1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
Commit Graph

161 Commits

Author SHA1 Message Date
Carlos Alexandro Becker
b891a95a4b fix: godoc and file checks 2018-02-09 10:03:24 -02:00
Carlos Alexandro Becker
f3910c9751 style: improved code a bit 2018-02-09 10:03:24 -02:00
Carlos Alexandro Becker
5bc64413de feat: load github token from file 2018-02-09 10:03:24 -02:00
Carlos Alexandro Becker
0bac9cb7d8
Merge remote-tracking branch 'origin/master' into build 2018-01-26 18:49:26 -02:00
Carlos Alexandro Becker
6fa341d1d2
fix: added missing file 2018-01-26 16:02:05 -02:00
Carlos Alexandro Becker
8063429f5d
style: even simple config load 2018-01-26 16:02:05 -02:00
Carlos Alexandro Becker
f1cfb63fb5
feat: allowing anchors and simplified code 2018-01-26 16:02:05 -02:00
Carlos Alexandro Becker
42a8f0b194
refactor: adios build target 2018-01-21 22:44:06 -02:00
Carlos Alexandro Becker
1f9f323e8f
Merge branch 'master' into build 2018-01-21 21:54:57 -02:00
Carlos Alexandro Becker
4c33e488ba
style: make context.Wrap public 2018-01-21 20:07:18 -02:00
Carlos Alexandro Becker
a457ae6e17
feat: support multiple build systems 2018-01-21 14:31:08 -02:00
Carlos Alexandro Becker
92231bc930 feat: support multiple tag_templates for docker 2018-01-18 21:40:16 -02:00
Carlos Alexandro Becker
9e58a65519 feat: support download strategy on brew
closes #507
2018-01-17 19:45:02 -02:00
Carlos Alexandro Becker
4d71720b67 feat: skip formula upload 2018-01-12 19:24:58 -02:00
Carlos Alexandro Becker
7d22ffd969
style: better struct format 2017-12-27 09:16:00 -02:00
Carlos Alexandro Becker
6270aa9cb2
feat: name template on snapcraft packages
closes #470
2017-12-26 21:44:11 -02:00
Carlos Alexandro Becker
5dba7fbfdf
feat: name_template support for fpm packages
closes #409
2017-12-26 21:36:17 -02:00
Frank Schroeder
7b95e1e342
feat: add artifact sign pipeline
This patch adds a generic artifact signing pipeline.

Fixes #166
2017-12-13 23:02:19 +01:00
Andy Grunwald
d875dd0dd5 feat: Implemented upload mode for Artifactory pipeline
The Artifactory pipeline now supports two different
types of upload modes:

- binary: Only the raw binaries will be uploaded
- archive: All artifacts that are generated will be uploaded
2017-12-09 20:54:04 +01:00
Andy Grunwald
27a9abc73b refactor: Introduced name per artifactory instance for identification
This introduced a new property per Artifactory instance: Name
With this name we are able to

a) identify a instance
b) use the name to identify the secret (instead of a number)
c) use this name for logging
2017-12-09 18:17:37 +01:00
Andy Grunwald
1f5df43e75 Merge branch 'master' into artifactory-support
* master: (47 commits)
  docs: add docs for env vars in name_template
  test: add test for name_template with env var
  feat: support env vars for name_template
  docs: Fixed broken homebrew link
  docs: fixed master build status badge on readme
  chore: misspeled word on package docs
  feat: improved release notes
  chore: create config.yml
  chore: create stale.yml
  chore: push docs to master
  chore: changing the order of the tasks
  chore: using https instead of ssh url
  chore: always run make static on build
  chore: using travis deploy feature
  chore: automating docs deployment
  fix: do not decorate git log output
  chore: make static pushes repo as well
  docs: env support for docker tag_template
  feat: allow env vars for docker tag_template
  fix: move env vars to context
  ...
2017-12-08 21:50:02 +01:00
Carlos Alexandro Becker
14d1347ed9 feat: allow templates on docker tags
Allow to template docker tags.

Closes #433
2017-12-05 14:49:25 -02:00
Andy Grunwald
492a018b7f feat: Added basic support to push binaries into Artifactory
Artifactory is an universal Artifact Repository Manager by
JFrog. See https://www.jfrog.com/artifactory/

It is available in an OSS and Enterprise version.
Many companies using this internally to store, manage and
distribute binaries within their internal infrastructure.

It adds basic support to push all generated binaries into an
Artifactory. Basic means only the built artifacts. Without
checksums or archives.
As an authentication only Basic auth is supported by this Pipe.

See #344
2017-12-02 20:26:55 +01:00
Carlos Alexandro Becker
8e6133c70c feat: allow override dist folder
Allow configuring the dist folder via
config file.

Closes #421
2017-11-26 22:20:40 -02:00
Joseph Wright
5193680e76 feat: Allow overriding fpm destination for binaries
Some packagers may want to put binaries in a location other than
/usr/local/bin. This allows one to override the destination for
binaries when using fpm, using the `fpm.bindir` config key.
2017-11-08 19:11:10 -02:00
Carlos Alexandro Becker
76087d53cd feat: validate changelog config for invalid fields
If the user configures the changelog section with an invalid key, show
an error.
2017-10-20 16:22:01 -02:00
Carlos Alexandro Becker
6277ab9ae3 feat: added sorting support to the changelog pipe
We can now add:

```yaml
changelog:
	sort: asc
```

to group together our commits by prefix or just to sort them...

Closes #284
2017-10-19 20:58:23 -02:00
Carlos Alexandro Becker
4afd58e49c feat: added the filter ability to changelog pipe
We can now ignore some commits from the changelog by providing the
`changelog.filters.excludes` array of strings in the config
file.

Refs #284
2017-10-18 09:19:36 -02:00
Carlos Alexandro Becker
87d269dc45 refactor: turned changelog generation into a pipe
I turned myself into a pipe morty!

PipeRick!!!

refs #284
2017-10-18 09:19:36 -02:00
Matt Stratton
973356694a Merge branch 'master' into mattstratton/add-custom-release-title 2017-10-16 08:36:46 -05:00
Carlos Alexandro Becker
529af6fe72 refactor: improved git error handling
Improved the error handling in git code,
mostly in the defaults pipe. The idea is to
output better error messages, hopefully avoiding
confusion on "whats wrong".

refs #356
2017-10-15 19:18:04 -02:00
Matt Stratton
ffebc52458
Merge branch 'mattstratton/add-custom-release-title' of github.com:mattstratton/goreleaser into mattstratton/add-custom-release-title
Signed-off-by: Matt Stratton <matt.stratton@gmail.com>

# Conflicts:
#	config/config.go
#	internal/name/name.go
2017-10-07 05:56:49 -05:00
Matt Stratton
e2ee7c4b2f
feat: Add ability to specify release name
Signed-off-by: Matt Stratton <matt.stratton@gmail.com>
2017-10-07 05:49:58 -05:00
Matt Stratton
f823cf2865
feat: Add ability to specify release name
Signed-off-by: Matt Stratton <matt.stratton@gmail.com>
2017-10-07 04:31:14 -05:00
Jorin Vogel
db7af5388d
feat: Add prerelease option
Add an config option to `release` section to set a release at not ready
for production.

Closes #384
2017-10-05 15:47:29 +02:00
Jorin Vogel
0e2e8c8eb3
feat: Add archive config 'wrap_in_directory'
The field is optional. When set to true, files in archive are wrapped
in a directory, which has the same name as the archive itself.
Tests have also been extended to cover this.

Closes #251
2017-10-02 18:53:18 +02:00
Carlos Alexandro Becker
e798a8dc3a Merge branch 'master' into lint 2017-10-01 09:46:14 -03:00
Jorin Vogel
a5bf473f70
Add config field to overwrite brew commit author
Default author name and email can be set in config file.
Close #292.
2017-09-30 21:18:09 +02:00
Carlos Alexandro Becker
fe36819fe7 Merge branch 'master' into lint 2017-09-27 08:43:52 -03:00
Carlos Alexandro Becker
d85a9001ec
removing all assert.New because vet shadow complains about this now
aaaaaaaaaaarhhhhhhhhgttt
2017-09-26 19:24:49 -03:00
Carlos Alexandro Becker
fd0e57ee4e
github enterprise config update 2017-09-26 18:33:22 -03:00
Carlos Alexandro Becker
9ddf723c4e
Merge branch 'master' into github-enterprise 2017-09-26 18:25:11 -03:00
Carlos Alexandro Becker
bd7e503961
allows extra copies in the docker image 2017-09-25 19:10:04 -03:00
Carlos Alexandro Becker
632d206848
Merge branch 'pull-369' into github-enterprise 2017-09-24 14:17:31 -03:00
Stephan Klevenz
1cd2e5e625 Merge branch 'master' into support-github-enterprise 2017-09-24 17:25:17 +02:00
Stephan Klevenz
ca48aa430f support github enterprise 2017-09-24 17:02:34 +02:00
Carlos Alexandro Becker
618711cd43
fixed uploads url 2017-09-22 09:42:36 -03:00
Carlos Alexandro Becker
8c996e84fb
rm 2017-09-15 11:06:55 -03:00
Carlos Alexandro Becker
567b7a9b1b
support github enterprise 2017-09-15 11:04:03 -03:00
Carlos Alexandro Becker
2175bf1e80
also supporting latest docker tag 2017-09-14 20:16:49 -03:00