mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 16:37:04 +02:00
more testing
This commit is contained in:
parent
5621721889
commit
e521965294
15 changed files with 526 additions and 3 deletions
6
.github/workflows/charts-release.yaml
vendored
6
.github/workflows/charts-release.yaml
vendored
|
@ -71,7 +71,7 @@ jobs:
|
|||
- name: Package Helm Charts
|
||||
shell: bash
|
||||
env:
|
||||
SRC_DIR: "src/charts"
|
||||
SRC_DIR: "src"
|
||||
DEST_DIR: "dest"
|
||||
CHARTS: "${{ steps.filter-charts.outputs.addedOrModifiedCharts }}"
|
||||
run: |
|
||||
|
@ -79,8 +79,8 @@ jobs:
|
|||
mapfile -t CHART_PATH_PARTS < <(echo "$CHART" | tr '/' '\n')
|
||||
CHART_TYPE=${CHART_PATH_PARTS[2]}
|
||||
|
||||
helm dep up "$CHART"
|
||||
helm package "$CHART" -u -d "$DEST_DIR/$CHART_TYPE"
|
||||
helm dep up "${SRC_DIR}/${CHART}"
|
||||
helm package "${SRC_DIR}/${CHART}" -u -d "${DEST_DIR}/${CHART_TYPE}"
|
||||
done
|
||||
|
||||
# - name: Create new index
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue