File tree Expand file tree Collapse file tree 10 files changed +17
-17
lines changed Expand file tree Collapse file tree 10 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 15
15
build-publish :
16
16
name : " Build image and publish"
17
17
timeout-minutes : 15
18
- runs-on : ubuntu-latest
18
+ runs-on : ubuntu-24.04
19
19
permissions :
20
20
contents : read
21
21
packages : write
Original file line number Diff line number Diff line change 15
15
build :
16
16
name : Build
17
17
timeout-minutes : 15
18
- runs-on : ubuntu-latest
18
+ runs-on : ubuntu-24.04
19
19
if : github.event.pull_request.draft == false
20
20
permissions :
21
21
contents : read
Original file line number Diff line number Diff line change 11
11
helm-lint :
12
12
name : Helm chart check
13
13
timeout-minutes : 5
14
- runs-on : ubuntu-latest
14
+ runs-on : ubuntu-24.04
15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 9
9
conform :
10
10
name : Conformance
11
11
timeout-minutes : 5
12
- runs-on : ubuntu-latest
12
+ runs-on : ubuntu-24.04
13
13
if : github.event.pull_request.draft == false
14
14
steps :
15
15
- name : Checkout
22
22
23
23
- name : Conform action
24
24
uses :
talos-systems/[email protected]
25
+ with :
26
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11
11
build-publish :
12
12
name : " Publish helm chart"
13
13
timeout-minutes : 10
14
- runs-on : ubuntu-latest
14
+ runs-on : ubuntu-24.04
15
15
permissions :
16
16
contents : read
17
17
packages : write
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
release-please :
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04
12
12
permissions :
13
13
contents : write
14
14
pull-requests : write
Original file line number Diff line number Diff line change 9
9
build-publish :
10
10
name : " Check release docs"
11
11
timeout-minutes : 15
12
- runs-on : ubuntu-latest
12
+ runs-on : ubuntu-24.04
13
13
if : startsWith(github.head_ref, 'release-')
14
14
permissions :
15
15
contents : read
21
21
run : git fetch --prune --unshallow
22
22
23
23
- name : Release version
24
- shell : bash
25
- id : release
26
- run : |
27
- echo "TAG=v${GITHUB_HEAD_REF:8}" >> "$GITHUB_ENV"
24
+ if : startsWith(github.head_ref, 'release-please')
25
+ run : jq -r '"TAG=v"+.[]' hack/release-please-manifest.json >> "$GITHUB_ENV"
28
26
29
27
- name : Helm docs
30
28
uses : gabe565/setup-helm-docs-action@v1
39
37
build-publish-cli :
40
38
name : " Check cli tool"
41
39
timeout-minutes : 15
42
- runs-on : ubuntu-latest
40
+ runs-on : ubuntu-24.04
43
41
if : startsWith(github.head_ref, 'release-')
44
42
steps :
45
43
- name : Checkout
Original file line number Diff line number Diff line change 10
10
build-publish :
11
11
name : " Build image and publish"
12
12
timeout-minutes : 15
13
- runs-on : ubuntu-latest
13
+ runs-on : ubuntu-24.04
14
14
permissions :
15
15
contents : read
16
16
packages : write
61
61
build-publish-cli :
62
62
name : " Publish cli tool"
63
63
timeout-minutes : 15
64
- runs-on : ubuntu-latest
64
+ runs-on : ubuntu-24.04
65
65
permissions :
66
66
contents : write
67
67
steps :
Original file line number Diff line number Diff line change 7
7
jobs :
8
8
stale :
9
9
name : Check stale issues
10
- runs-on : ubuntu-latest
10
+ runs-on : ubuntu-24.04
11
11
permissions :
12
12
issues : write
13
13
pull-requests : write
Original file line number Diff line number Diff line change 1
1
# Make release
2
2
3
3
``` shell
4
- git pull release-please--branches--main
4
+ git branch -D release-please--branches--main
5
+ git checkout release-please--branches--main
5
6
git tag v0.0.2
6
7
7
8
make helm-unit docs
8
- make release-update
9
9
10
10
git add .
11
11
git commit
You can’t perform that action at this time.
0 commit comments