summaryrefslogtreecommitdiffstats
path: root/goreleaser.yml
AgeCommit message (Collapse)Author
2019-06-11releaser: Update Go Releaser and consolidate the 2 configsBjørn Erik Pedersen
Fixes #5949
2018-12-26releaser: Use Git short commit in release binariesBjørn Erik Pedersen
Fixes #5562
2018-12-24release: Fix goreleaser configBjørn Erik Pedersen
2018-12-11Add /config dir supportBjørn Erik Pedersen
This commit adds support for a configuration directory (default `config`). The different pieces in this puzzle are: * A new `--environment` (or `-e`) flag. This can also be set with the `HUGO_ENVIRONMENT` OS environment variable. The value for `environment` defaults to `production` when running `hugo` and `development` when running `hugo server`. You can set it to any value you want (e.g. `hugo server -e "Sensible Environment"`), but as it is used to load configuration from the file system, the letter case may be important. You can get this value in your templates with `{{ hugo.Environment }}`. * A new `--configDir` flag (defaults to `config` below your project). This can also be set with `HUGO_CONFIGDIR` OS environment variable. If the `configDir` exists, the configuration files will be read and merged on top of each other from left to right; the right-most value will win on duplicates. Given the example tree below: If `environment` is `production`, the left-most `config.toml` would be the one directly below the project (this can now be omitted if you want), and then `_default/config.toml` and finally `production/config.toml`. And since these will be merged, you can just provide the environment specific configuration setting in you production config, e.g. `enableGitInfo = true`. The order within the directories will be lexical (`config.toml` and then `params.toml`). ```bash config ├── _default │   ├── config.toml │   ├── languages.toml │   ├── menus │   │   ├── menus.en.toml │   │   └── menus.zh.toml │   └── params.toml ├── development │   └── params.toml └── production ├── config.toml └── params.toml ``` Some configuration maps support the language code in the filename (e.g. `menus.en.toml`): `menus` (`menu` also works) and `params`. Also note that the only folders with "a meaning" in the above listing is the top level directories below `config`. The `menus` sub folder is just added for better organization. We use `TOML` in the example above, but Hugo also supports `JSON` and `YAML` as configuration formats. These can be mixed. Fixes #5422
2018-12-06Add tpl/site and tpl/hugoBjørn Erik Pedersen
This means that the current `.Site` and ´.Hugo` is available as a globals, so you can do `site.IsServer`, `hugo.Version` etc. Fixes #5470 Fixes #5467 Fixes #5503
2018-08-20Fix build on armv7Carlos Alexandro Becker
Closes #5101
2018-08-15releaser: Fix goreleaser configCarlos Alexandro Becker
* fix: goreleaser nfpm artifact names * fix: replacements * fix: make both goreleaser yaml files more similar Closes #5022
2018-07-09releaser: Revert to the old versions of the release pipelineBjørn Erik Pedersen
2018-07-09fix: nfpm replacementsCarlos Alexandro Becker
refs https://github.com/goreleaser/goreleaser/issues/715
2018-06-28Update GoReleaser configCarlos Alexandro Becker
2018-04-16releaser: Fix LICENSE vs LICENSE.mdBjørn Erik Pedersen
Fixes #4631
2018-01-22releaser: Fix BuildDate in release binariesBjørn Erik Pedersen
Fixes #4299
2017-08-28release: CGO_ENABLED=0Bjørn Erik Pedersen
2017-07-10releaser: Ignore openbsd/armBjørn Erik Pedersen
It is failing with "undefined: Flock_t".
2017-05-22releaser: Update ldflagsBjørn Erik Pedersen
2017-04-26releaser: Fix some of the fpm fields for debAnthony Fok
2017-04-25releaser: Fix ldflags settingBjørn Erik Pedersen
Closes #3382
2017-04-24Add -linkmode externalJames Munnelly
2017-04-24Set extldflags to static when buildingJames Munnelly
2017-04-24Automate the Hugo release processBjørn Erik Pedersen
This commit adds a work flow aroung GoReleaser to get the Hugo release process automated and more uniform: * It can be run fully automated or in two steps to allow for manual edits of the relase notes. * It supports both patch and full releases. * It fetches author, issue, repo info. etc. for the release notes from GitHub. * The file names produced are mainly the same as before, but we no use tar.gz as archive for all Unix versions. * There isn't a fully automated CI setup in place yet, but the release tag is marked in the commit message with "[ci deploy]" Fixes #3358