Skip to content

Commit 7b794ff

Browse files
authored
Fix github actions docker image org (#1000)
Actions are currently failing to publish the images because the image names are incorrect. I'm not positive if there are more changes necessary yet, but this should correct the organization name. See https://github.com/prometheus-community/elasticsearch_exporter/actions/runs/13350556606/job/37286525153 Signed-off-by: Joe Adams <github@joeadams.io>
1 parent 05609ff commit 7b794ff

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
thread: ${{ matrix.thread }}
6868

6969
publish_main:
70+
# https://github.com/prometheus/promci/blob/52c7012f5f0070d7281b8db4a119e21341d43c91/actions/publish_main/action.yml
7071
name: Publish main branch artifacts
7172
runs-on: ubuntu-latest
7273
needs: [test_go, build_all]
@@ -79,8 +80,10 @@ jobs:
7980
- uses: prometheus/promci@52c7012f5f0070d7281b8db4a119e21341d43c91 # v0.4.5
8081
- uses: ./.github/promci/actions/publish_main
8182
with:
83+
docker_hub_organization: prometheuscommunity
8284
docker_hub_login: ${{ secrets.docker_hub_login }}
8385
docker_hub_password: ${{ secrets.docker_hub_password }}
86+
quay_io_organization: prometheuscommunity
8487
quay_io_login: ${{ secrets.quay_io_login }}
8588
quay_io_password: ${{ secrets.quay_io_password }}
8689

@@ -95,8 +98,10 @@ jobs:
9598
- uses: prometheus/promci@52c7012f5f0070d7281b8db4a119e21341d43c91 # v0.4.5
9699
- uses: ./.github/promci/actions/publish_release
97100
with:
101+
docker_hub_organization: prometheuscommunity
98102
docker_hub_login: ${{ secrets.docker_hub_login }}
99103
docker_hub_password: ${{ secrets.docker_hub_password }}
104+
quay_io_organization: prometheuscommunity
100105
quay_io_login: ${{ secrets.quay_io_login }}
101106
quay_io_password: ${{ secrets.quay_io_password }}
102107
github_token: ${{ secrets.PROMBOT_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)