Skip to content

Commit 72298b5

Browse files
authored
Fixing broken Docker release (#529)
1 parent 4aeffc1 commit 72298b5

File tree

4 files changed

+47
-18
lines changed

4 files changed

+47
-18
lines changed

.github/workflows/release-validation.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,12 @@ jobs:
1313
with:
1414
submodules: true
1515
fetch-depth: 0
16-
- name: Set up Go
17-
uses: actions/setup-go@v5
16+
- name: Setup Release
17+
uses: ./actions/release
1818
with:
19-
go-version: '1.25.5'
20-
- name: Log in to Docker Hub
21-
uses: docker/login-action@v3
22-
with:
23-
username: ${{ secrets.DOCKER_USERNAME }}
24-
password: ${{ secrets.GITHUB_TOKEN }}
25-
registry: ghcr.io
19+
go_version: '1.25.5'
20+
docker_user: ${{ secrets.DOCKER_USERNAME }}
21+
docker_password: ${{ secrets.GITHUB_TOKEN }}
2622
- name: Run GoReleaser
2723
uses: goreleaser/goreleaser-action@v6
2824
with:

.github/workflows/release.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,12 @@ jobs:
1515
with:
1616
submodules: true
1717
fetch-depth: 0
18-
- name: Set up Go
19-
uses: actions/setup-go@v5
18+
- name: Setup Release
19+
uses: ./actions/release
2020
with:
21-
go-version: '1.25.5'
22-
- name: Log in to Docker Hub
23-
uses: docker/login-action@v3
24-
with:
25-
username: ${{ secrets.DOCKER_USERNAME }}
26-
password: ${{ secrets.GITHUB_TOKEN }}
27-
registry: ghcr.io
21+
go_version: '1.25.5'
22+
docker_user: ${{ secrets.DOCKER_USERNAME }}
23+
docker_password: ${{ secrets.GITHUB_TOKEN }}
2824
- name: Run GoReleaser
2925
uses: goreleaser/goreleaser-action@v6
3026
with:

actions/release/action.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: 'Run Release Setup'
2+
description: 'Run Release Setup'
3+
inputs:
4+
go_version:
5+
description: 'Golang version'
6+
required: true
7+
default: '1.25.5'
8+
docker_user:
9+
description: 'Docker username'
10+
required: true
11+
default: 'user'
12+
docker_password:
13+
description: 'Docker Password'
14+
required: true
15+
default: 'pass'
16+
17+
18+
runs:
19+
using: 'composite'
20+
steps:
21+
- name: Set up Go
22+
uses: actions/setup-go@v5
23+
with:
24+
go-version: "${{ inputs.go_version }}"
25+
- name: Set up Docker Buildx
26+
uses: docker/setup-buildx-action@v3
27+
- name: Log in to Docker Hub
28+
uses: docker/login-action@v3
29+
with:
30+
username: "${{ inputs.docker_user }}"
31+
password: "${{ inputs.docker_password }}"
32+
registry: ghcr.io

website/content/docs/releases/gdg_0.9.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,13 @@ weight: 2
88
toc: true
99
---
1010

11+
1112
## Release Notes for v0.9.0
1213

14+
CICD Build failures, skipping versions. Skipping to next version.
15+
16+
## Release Notes for v0.9.1
17+
1318
**Release Date: 01/08/2026**
1419

1520
### Min Recommended Grafana Versions:

0 commit comments

Comments
 (0)