| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you 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. |
| |
| name: Release Charts |
| on: |
| push: |
| tags: "*.*.*" |
| jobs: |
| release: |
| # depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions |
| # see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token |
| permissions: |
| contents: write |
| runs-on: ubuntu-latest |
| steps: |
| - name: Checkout |
| uses: actions/checkout@v3 |
| with: |
| fetch-depth: 0 |
| - name: Install Helm |
| uses: azure/setup-helm@v3 |
| - name: package and index |
| run: | |
| cd helm-charts |
| helm package doris -d package |
| helm package doris-operator -d package |
| helm repo index ./package --url https://charts.selectdb.com --merge ./index.yaml |
| - name: install ossutil |
| uses: manyuanrong/setup-ossutil@v2.0 |
| with: |
| endpoint: "oss-cn-beijing.aliyuncs.com" |
| access-key-id: ${{ secrets.OSS_KEY_ID }} |
| access-key-secret: ${{ secrets.OSS_KEY_SECRET }} |
| - name: upload files |
| run: | |
| ossutil cp helm-charts/package oss://selectdb-charts -rf |
| |