Skip to content

Commit f9dbb1b

Browse files
authored
Publish images to opentelemetry namespaces (#15)
* Publish images to opentelemetry namespaces Fixes #14 Signed-off-by: Juraci Paixão Kröhling <[email protected]> * Removed quay Signed-off-by: Juraci Paixão Kröhling <[email protected]> * Change release action Signed-off-by: Juraci Paixão Kröhling <[email protected]>
1 parent 0013b56 commit f9dbb1b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- name: Generate distribution sources
2525
run: make generate-sources
2626

27-
- name: Log into Quay.io
28-
run: echo "${{ secrets.QUAY_PASSWORD }}" | docker login quay.io -u ${{ secrets.QUAY_USERNAME }} --password-stdin
27+
- name: Log into Docker.io
28+
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
2929

3030
- name: Run GoReleaser
3131
uses: goreleaser/goreleaser-action@v2

.goreleaser.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ builds:
3535
- goos: windows
3636
goarch: arm64
3737
docker_manifests:
38-
- name_template: quay.io/jpkroehling/otelcol:{{ .Tag }}
38+
- name_template: otel/otelcol:{{ .Tag }}
3939
image_templates:
40-
- quay.io/jpkroehling/otelcol:{{ .Tag }}-amd64
40+
- otel/otelcol:{{ .Tag }}-amd64
4141
dockers:
4242
- image_templates:
43-
- "quay.io/jpkroehling/otelcol:{{ .Tag }}-amd64"
43+
- "otel/otelcol:{{ .Tag }}-amd64"
4444
dockerfile: "distributions/otelcol/Dockerfile"
4545
use: buildx
4646
build_flag_templates:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
docker_manifests:
2-
- name_template: quay.io/jpkroehling/{distribution}:{{ .Tag }}
2+
- name_template: otel/{distribution}:{{ .Tag }}
33
image_templates:
4-
- quay.io/jpkroehling/{distribution}:{{ .Tag }}-amd64
4+
- otel/{distribution}:{{ .Tag }}-amd64

scripts/goreleaser-templates/docker.template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dockers:
22
- image_templates:
3-
- "quay.io/jpkroehling/{distribution}:{{ .Tag }}-amd64"
3+
- "otel/{distribution}:{{ .Tag }}-amd64"
44
dockerfile: "distributions/{distribution}/Dockerfile"
55
use: buildx
66
build_flag_templates:

0 commit comments

Comments
 (0)