diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b4852c7..2e40df2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,6 +114,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOPATH: ${{ env.GOPATH }} + HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.NGINX_PAT }} - name: Push to Dockerhub uses: docker/build-push-action@v2 with: diff --git a/.goreleaser.yml b/.goreleaser.yml index 4d68e122..9dc4ee1d 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -44,6 +44,7 @@ brews: - tap: owner: nginxinc name: homebrew-tap + token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}" folder: Formula homepage: https://www.nginx.com/ description: NGINX Prometheus Exporter for NGINX and NGINX Plus diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f0e0d1e..28d36970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 0.10.0 + +A list of changes can be found on Github at: [Release v0.10.0](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.10.0) + ### 0.9.0 A list of changes can be found on Github at: [Release v0.9.0](https://github.com/nginxinc/nginx-prometheus-exporter/releases/tag/v0.9.0) diff --git a/Makefile b/Makefile index 5f2a29a3..b6040e78 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 0.9.0 +VERSION = 0.10.0 TAG = $(VERSION) PREFIX = nginx/nginx-prometheus-exporter diff --git a/README.md b/README.md index df033858..d8ff5aee 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,13 @@ To start the exporter we use the [docker run](https://docs.docker.com/engine/ref * To export NGINX metrics, run: ``` - $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.9.0 -nginx.scrape-uri=http://:8080/stub_status + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.10.0 -nginx.scrape-uri=http://:8080/stub_status ``` where `` is the IP address/DNS name, through which NGINX is available. * To export NGINX Plus metrics, run: ``` - $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.9.0 -nginx.plus -nginx.scrape-uri=http://:8080/api + $ docker run -p 9113:9113 nginx/nginx-prometheus-exporter:0.10.0 -nginx.plus -nginx.scrape-uri=http://:8080/api ``` where `` is the IP address/DNS name, through which NGINX Plus is available.