-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config to publish Nix packages (#581)
Signed-off-by: Luca Comellini <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,9 +58,9 @@ brews: | |
- repository: | ||
owner: nginxinc | ||
name: homebrew-tap | ||
token: '{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}' | ||
token: '{{ .Env.NGINX_GITHUB_TOKEN }}' | ||
folder: Formula | ||
homepage: https://www.nginx.com/ | ||
homepage: https://github.com/nginxinc/nginx-prometheus-exporter | ||
description: NGINX Prometheus Exporter for NGINX and NGINX Plus | ||
license: Apache-2.0 | ||
commit_author: | ||
|
@@ -113,3 +113,18 @@ snapcrafts: | |
plugs: ["network", "network-bind"] | ||
completer: completions/nginx-prometheus-exporter.bash | ||
disable: "{{ if .IsSnapshot }}true{{ end }}" | ||
|
||
nix: | ||
- repository: | ||
owner: nginxinc | ||
name: nur | ||
token: '{{ .Env.NGINX_GITHUB_TOKEN }}' | ||
homepage: https://github.com/nginxinc/nginx-prometheus-exporter | ||
description: NGINX Prometheus Exporter for NGINX and NGINX Plus | ||
license: asl20 | ||
commit_author: | ||
name: nginx-bot | ||
email: [email protected] | ||
extra_install: |- | ||
installManPage ./manpages/nginx-prometheus-exporter.1.gz | ||
installShellCompletion ./completions/* |