Skip to content

Commit

Permalink
docs: release v0.1.11
Browse files Browse the repository at this point in the history
Signed-off-by: Xinwei Xiong (cubxxw) <[email protected]>
  • Loading branch information
cubxxw committed Jan 8, 2024
1 parent 9268393 commit c14c10e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/configs/ct-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ target-branch: main
chart-dirs:
- charts
chart-repos:
- openim=https://openimsdk.github.io/charts/
helm-extra-args: "--timeout 600s"
- openim=https://openimsdk.github.io/helm-charts/
helm-extra-args: "--timeout 600s"
validate-chart-schema: false
validate-maintainers: true
validate-yaml: true
Expand Down
2 changes: 1 addition & 1 deletion .github/configs/ct-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ target-branch: main
chart-dirs:
- charts
chart-repos:
- openim=https://openimsdk.github.io/charts/
- openim=https://openimsdk.github.io/helm-charts/
validate-chart-schema: false
validate-maintainers: true
validate-yaml: true
Expand Down
2 changes: 1 addition & 1 deletion .github/linters/ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ chart-repos:
helm-extra-args: --timeout 600s
excluded-charts:
# If not running on GCE, will error: "Failed to get GCE config"
- openim-admin
# - openim-admin
additional-commands:
# - helm unittest --helm3 --strict --file unittests/*.yaml --file 'unittests/**/*.yaml' {{ .Path }}
2 changes: 1 addition & 1 deletion .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
contains(steps.list-changed.outputs.changed_charts, 'openim-web') ||
contains(steps.list-changed.outputs.changed_charts, 'openim-admin')
run: |
helm repo add openim https://openimsdk.github.io/charts/
helm repo add openim https://openimsdk.github.io/helm-charts/
helm openim build charts/openim-web/
helm template charts/openim-web/ --set server.extensions.enabled=true -s templates/crds/* | kubectl apply -f -
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ jobs:
charts_dir: charts
config: "./.github/configs/cr.yaml"
packages_with_index: true
skip_existing: true
env:
CR_TOKEN: "${{ secrets.BOT_GITHUB_TOKEN }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# run: |
# helm repo add bitnami https://charts.bitnami.com/bitnami
# helm repo add grafana https://grafana.github.io/helm-charts
# # helm repo add openim https://openim.github.io/helm-charts
# # helm repo add openim https://openimsdk.github.io/helm-charts

# - name: Run chart-releaser
# uses: helm/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion charts/openim-admin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.11
version: 0.1.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/openim-chat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.11
version: 0.1.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/openim-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.11
version: 0.1.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/openim-web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.11
version: 0.1.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion docs/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Unlike traditional software version control that often relies on branch concepts
- **Chart.yaml File**: Each chart contains a `Chart.yaml` file in its directory. This file is pivotal for managing the version of each individual chart. It holds the `version` key, which gets updated with every new release.

```yaml
version: 0.1.11
version: 0.1.12
```
- **Automated CICD**: Developers don't need to worry about managing branches, tags, or releases manually. These aspects are handled automatically through Continuous Integration and Continuous Deployment (CICD) systems. When a new chart version is pushed to the repository, the CICD pipeline is triggered.
Expand Down

0 comments on commit c14c10e

Please sign in to comment.