Commit d127060b by Rick Committed by GitHub

fix: the helm dep update step is missing (#1077)

Signed-off-by: rick <LinuxSuRen@users.noreply.github.com>
Co-authored-by: rick <LinuxSuRen@users.noreply.github.com>
parent 1829b22c
...@@ -5,7 +5,7 @@ on: ...@@ -5,7 +5,7 @@ on:
tags: tags:
- 'v*.*.*' - 'v*.*.*'
branches: branches:
- master - main
jobs: jobs:
helm: helm:
...@@ -30,5 +30,6 @@ jobs: ...@@ -30,5 +30,6 @@ jobs:
unset APP_VERSION unset APP_VERSION
unset HELM_VERSION unset HELM_VERSION
fi fi
helm dependency update files/helm/fastgpt
helm package files/helm/fastgpt --version ${HELM_VERSION}-helm --app-version ${APP_VERSION} -d bin helm package files/helm/fastgpt --version ${HELM_VERSION}-helm --app-version ${APP_VERSION} -d bin
helm push bin/fastgpt-${HELM_VERSION}-helm.tgz oci://${HELM_REPO} helm push bin/fastgpt-${HELM_VERSION}-helm.tgz oci://${HELM_REPO}
...@@ -62,5 +62,6 @@ jobs: ...@@ -62,5 +62,6 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Helm Check - name: Helm Check
run: | run: |
helm dependency update files/helm/fastgpt
helm lint files/helm/fastgpt helm lint files/helm/fastgpt
helm package files/helm/fastgpt helm package files/helm/fastgpt
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment