kruise 1.6.3 (#104) #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Chart Publish | |
on: | |
push: | |
branches: | |
- master | |
- rewrite-build | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
- name: Add dependency chart repos | |
run: | | |
helm repo add openkruise https://openkruise.github.io/charts | |
helm repo add minio https://operator.min.io | |
helm repo add stable https://charts.helm.sh/stable | |
helm repo add incubator https://charts.helm.sh/incubator | |
- name: Configure Git | |
run: | | |
git config user.name "gh-actions" | |
git config user.email "[email protected]" | |
# This is required to consider the old Circle-CI Index and to stay compatible with all the old releases. | |
- name: Fetch current Chart Index | |
run: | | |
git checkout origin/gh-pages index.yaml | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
charts_dir: charts | |
config: "./.github/configs/cr.yaml" | |
env: | |
CR_TOKEN: "${{ secrets.GH_TOKEN }}" | |
CR_SKIP_EXISTING: "true" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |