Skip to content

Commit 82fca30

Browse files
committed
bump version to 2.0.0-alpha.1
Signed-off-by: roc <[email protected]>
1 parent fc89d0c commit 82fca30

File tree

4 files changed

+33
-109
lines changed

4 files changed

+33
-109
lines changed

.github/workflows/docker-ci.yaml

Lines changed: 0 additions & 106 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
release:
9+
permissions:
10+
contents: write # to push chart release and create a release (helm/chart-releaser-action)
11+
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Code
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "[email protected]"
23+
24+
- name: Set up Helm
25+
uses: azure/setup-helm@v4
26+
27+
- name: Run chart-releaser
28+
uses: helm/[email protected]
29+
env:
30+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Image URL to use all building/pushing image targets
2-
IMG ?= imroc/tke-extend-network-controller:dev
2+
IMG ?= imroc/tke-extend-network-controller:2.0.0-alpha.1
33
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
44
ENVTEST_K8S_VERSION = 1.30.0
55

charts/tke-extend-network-controller/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 1.1.0
21+
version: 2.0.0-alpha.1
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to
2525
# follow Semantic Versioning. They should reflect the version the application is using.
2626
# It is recommended to use it with quotes.
27-
appVersion: "1.1.0"
27+
appVersion: 2.0.0-alpha.1

0 commit comments

Comments
 (0)