-
Notifications
You must be signed in to change notification settings - Fork 7
117 lines (95 loc) · 3.59 KB
/
Copy pathrelease.yaml
File metadata and controls
117 lines (95 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#
# Copyright (C) 2026 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
name: release
permissions:
contents: write
on:
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
branch:
description: 'Branch to use for the release'
required: true
default: main
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
jobs:
tag:
name: Tagging
runs-on: ubuntu-24.04
outputs:
githubTag: ${{ steps.TAG_UTIL.outputs.githubTag}}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.inputs.branch }}
token: ${{ secrets.KAIDEN_BOT_TOKEN }}
- name: setup Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: 'cli/go/go.mod'
- name: setup Rust
uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
- name: Install cargo-typify
run: cargo install --version 0.6.2 cargo-typify
- name: Generate tag utilities
id: TAG_UTIL
run: |
TAG_PATTERN=${{ github.event.inputs.version }}
echo "githubTag=v$TAG_PATTERN" >> ${GITHUB_OUTPUT}
- name: tag
env:
NEW_GITHUB_TAG: ${{ steps.TAG_UTIL.outputs.githubTag }}
run: |
git config --local user.name ${{ github.actor }}
git config --local user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
# Generate the Go models for kdn
(cd cli/go && make gen)
# add generated file for kdn
git add cli/go/api.go
# Generate the Go models for workspace configuration
(cd workspace-configuration/go && make gen)
# add generated file for workspace configuration
git add workspace-configuration/go/workspace.go
# Generate the Rust types for kdn
(cd cli/rust && make gen)
# add generated file for kdn
git add cli/rust/src/lib.rs
# Generate the Rust types for workspace configuration
(cd workspace-configuration/rust && make gen)
# add generated file for workspace configuration
git add workspace-configuration/rust/src/lib.rs
# commit the changes
git commit -m "chore: 🥁 tagging ${{ steps.TAG_UTIL.outputs.githubTag }} 🥳"
for prefix in "" "cli/go/" "workspace-configuration/go/"
do
echo "Tagging with ${prefix}${NEW_GITHUB_TAG}"
git tag ${prefix}${NEW_GITHUB_TAG}
git push origin ${prefix}${NEW_GITHUB_TAG}
done
- name: Create Release
id: create_release
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ steps.TAG_UTIL.outputs.githubTag }}
name: ${{ steps.TAG_UTIL.outputs.githubTag }}
draft: false
prerelease: false