-
Notifications
You must be signed in to change notification settings - Fork 29
137 lines (116 loc) · 3.78 KB
/
release-pipeline.yml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: 🏷️ Release Pipeline, create a tag/release for Kaoto Next, publish the NPM and release a container image
on:
workflow_dispatch:
inputs:
tag_version:
type: string
description: |
The tag version we want to release without prefix (e.g. 2.0.0)
required: true
stable:
type: boolean
description: |
Is this a stable release? If so we are going to tag also a stable container image to be used in the Kaoto Operator
required: false
default: false
jobs:
tag-and-release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ github.event.inputs.tag_version }}
create_annotated_tag: true
tag_prefix: ""
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
npm-release:
permissions:
contents: write
runs-on: ubuntu-latest
needs:
- tag-and-release
steps:
- name: "🛰️ Checkout source code"
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@kaoto-next'
cache: 'yarn'
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: 🔧 Install dependencies
run: yarn
# Build lib
- name: Build @kaoto-next/ui package in lib mode
run: yarn workspace @kaoto-next/ui run build:lib
# Version and publish
- name: 'Version and publish'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.KAOTO_NEXT_NPM_TOKEN }}
run: yarn publish
container-image-release:
permissions:
contents: write
runs-on: ubuntu-latest
needs:
- tag-and-release
- npm-release
steps:
- name: "🛰️ Checkout source code"
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@kaoto-next'
cache: 'yarn'
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: 🔧 Install dependencies
run: yarn
- name: "🔧 Build packages"
run: |
yarn workspaces foreach --verbose --topological-dev --exclude @kaoto-next/camel-catalog run build
- name: "🛰️ Login to Container Registry"
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: "🔧 Build Container Image"
shell: bash
run: |
docker build -t "quay.io/kaotoio/kaoto-app:${{ github.event.inputs.tag_version }}" .
- name: "📤 Upload Container Image"
shell: bash
run: |
docker push quay.io/kaotoio/kaoto-app:${{ github.event.inputs.tag_version }}
- name: "🔧 Build Container Image"
shell: bash
run: |
docker build -t "quay.io/kaotoio/kaoto-app:stable" .
if: ${{ github.event.inputs.stable }}
- name: "📤 Upload Container Image"
shell: bash
run: |
docker push quay.io/kaotoio/kaoto-app:stable
if: ${{ github.event.inputs.stable }}