Skip to content

Commit

Permalink
released v0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mvisonneau committed May 23, 2023
1 parent 413855e commit 718e730
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
password: ${{ secrets.QUAY_TOKEN }}

- name: Snapcraft config
uses: samuelmeuli/action-snapcraft@v2
uses: samuelmeuli/action-snapcraft@v1
with:
snapcraft_token: ${{ secrets.SNAPCRAFT_TOKEN }}

Expand Down
1 change: 1 addition & 0 deletions .goreleaser.pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ universal_binaries:

archives:
- name_template: '{{ .ProjectName }}_edge_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
rlcp: true
format_overrides:
- goos: windows
format: zip
Expand Down
17 changes: 9 additions & 8 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ universal_binaries:
- {}

archives:
- name_template: '{{ .ProjectName }}_edge_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
- name_template: '{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
rlcp: true
format_overrides:
- goos: windows
format: zip
Expand Down Expand Up @@ -79,13 +80,13 @@ brews:
zsh_completion.install "./helpers/autocomplete/zsh" => "_{{ .ProjectName }}"
man1.install "./helpers/manpages/{{ .ProjectName }}.1.gz"
scoop:
description: *description
homepage: *homepage
license: *license
bucket:
owner: mvisonneau
name: scoops
scoops:
- description: *description
homepage: *homepage
license: *license
bucket:
owner: mvisonneau
name: scoops

snapcrafts:
- summary: *description
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [0ver](https://0ver.org) (more or less).

## [Unreleased]

## [v0.5.5] - 2023-05-22

### Added

- new metrics:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build: ## Build the binaries using local GOOS
.PHONY: release
release: ## Build & release the binaries (stable)
git tag -d edge
goreleaser release --rm-dist
goreleaser release --clean
find dist -type f -name "*.snap" -exec snapcraft upload --release stable,edge '{}' \;

.PHONY: protoc
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If you want to quickly try them out with your own data, have a look into the [ex
### Go

```bash
~$ go install github.com/mvisonneau/gitlab-ci-pipelines-exporter/cmd/gitlab-ci-pipelines-exporter@latest
~$ go run github.com/mvisonneau/gitlab-ci-pipelines-exporter/cmd/gitlab-ci-pipelines-exporter@latest
```

### Snapcraft
Expand Down
2 changes: 1 addition & 1 deletion examples/ha-setup/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
ALLOW_EMPTY_PASSWORD: 'yes'

gitlab-ci-pipelines-exporter-1: &gitlab-ci-pipelines-exporter
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
# You can comment out the image name and use the following statement
# to build the image against the current version of the repository
#build: ../..
Expand Down
2 changes: 1 addition & 1 deletion examples/opentelemetry/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- jaeger

gitlab-ci-pipelines-exporter:
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
# You can comment out the image name and use the following statement
# to build the image against the current version of the repository
# build: ../..
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.8'
services:
gitlab-ci-pipelines-exporter:
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
# You can comment out the image name and use the following statement
# to build the image against the current version of the repository
# build: ../..
Expand Down
2 changes: 1 addition & 1 deletion examples/webhooks/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.8'
services:
gitlab-ci-pipelines-exporter:
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
# You can comment out the image name and use the following statement
# to build the image against the current version of the repository
# build: ../..
Expand Down

0 comments on commit 718e730

Please sign in to comment.