Skip to content

Commit 718e730

Browse files
committed
released v0.5.5
1 parent 413855e commit 718e730

File tree

10 files changed

+19
-15
lines changed

10 files changed

+19
-15
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
password: ${{ secrets.QUAY_TOKEN }}
5050

5151
- name: Snapcraft config
52-
uses: samuelmeuli/action-snapcraft@v2
52+
uses: samuelmeuli/action-snapcraft@v1
5353
with:
5454
snapcraft_token: ${{ secrets.SNAPCRAFT_TOKEN }}
5555

.goreleaser.pre.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ universal_binaries:
2525

2626
archives:
2727
- name_template: '{{ .ProjectName }}_edge_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
28+
rlcp: true
2829
format_overrides:
2930
- goos: windows
3031
format: zip

.goreleaser.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ universal_binaries:
2424
- {}
2525

2626
archives:
27-
- name_template: '{{ .ProjectName }}_edge_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
27+
- name_template: '{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
28+
rlcp: true
2829
format_overrides:
2930
- goos: windows
3031
format: zip
@@ -79,13 +80,13 @@ brews:
7980
zsh_completion.install "./helpers/autocomplete/zsh" => "_{{ .ProjectName }}"
8081
man1.install "./helpers/manpages/{{ .ProjectName }}.1.gz"
8182
82-
scoop:
83-
description: *description
84-
homepage: *homepage
85-
license: *license
86-
bucket:
87-
owner: mvisonneau
88-
name: scoops
83+
scoops:
84+
- description: *description
85+
homepage: *homepage
86+
license: *license
87+
bucket:
88+
owner: mvisonneau
89+
name: scoops
8990

9091
snapcrafts:
9192
- summary: *description

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [0ver](https://0ver.org) (more or less).
77

88
## [Unreleased]
99

10+
## [v0.5.5] - 2023-05-22
11+
1012
### Added
1113

1214
- new metrics:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ build: ## Build the binaries using local GOOS
3434
.PHONY: release
3535
release: ## Build & release the binaries (stable)
3636
git tag -d edge
37-
goreleaser release --rm-dist
37+
goreleaser release --clean
3838
find dist -type f -name "*.snap" -exec snapcraft upload --release stable,edge '{}' \;
3939

4040
.PHONY: protoc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If you want to quickly try them out with your own data, have a look into the [ex
4141
### Go
4242

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

4747
### Snapcraft

examples/ha-setup/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
ALLOW_EMPTY_PASSWORD: 'yes'
1010

1111
gitlab-ci-pipelines-exporter-1: &gitlab-ci-pipelines-exporter
12-
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
12+
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
1313
# You can comment out the image name and use the following statement
1414
# to build the image against the current version of the repository
1515
#build: ../..

examples/opentelemetry/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- jaeger
2727

2828
gitlab-ci-pipelines-exporter:
29-
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
29+
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
3030
# You can comment out the image name and use the following statement
3131
# to build the image against the current version of the repository
3232
# build: ../..

examples/quickstart/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '3.8'
33
services:
44
gitlab-ci-pipelines-exporter:
5-
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
5+
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
66
# You can comment out the image name and use the following statement
77
# to build the image against the current version of the repository
88
# build: ../..

examples/webhooks/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '3.8'
33
services:
44
gitlab-ci-pipelines-exporter:
5-
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.4
5+
image: quay.io/mvisonneau/gitlab-ci-pipelines-exporter:v0.5.5
66
# You can comment out the image name and use the following statement
77
# to build the image against the current version of the repository
88
# build: ../..

0 commit comments

Comments
 (0)